From f88cd3b272fc2ea0eea86e35fc9b161f6580a169 Mon Sep 17 00:00:00 2001 From: Jacob Bachmann Date: Fri, 31 May 2024 21:48:10 +0200 Subject: [PATCH] feat: add packages to python environment --- modules/packages.nix | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/modules/packages.nix b/modules/packages.nix index 6275fae..bc683bd 100644 --- a/modules/packages.nix +++ b/modules/packages.nix @@ -31,9 +31,12 @@ rustc cargo # downloads your rust project's dependencies and builds your project go # go programming language - python312 - python312Packages.ptpython - python312Packages.ipython + (python312.withPackages (p: with p; [ + ptpython # an advanced python repl + ipython # ipython: productive interactive computing + pycryptodome # self-contained cryptographic library + gmpy2 # interface to gmp, mpfr, and mpc for python 3.7+ + ])) lua nixpkgs-fmt openjdk17