From bbdd2d9731d3e1d7d420e50fa870c9fd6a29c477 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabi=C3=A1n=20Montero?= Date: Wed, 20 Apr 2022 03:37:24 -0600 Subject: [PATCH] actualiza shenv de anpi y crea shenv de jupyter --- shenvs/anpi.nix | 6 ++++++ shenvs/jupyter.nix | 11 +++++++++++ 2 files changed, 17 insertions(+) create mode 100644 shenvs/jupyter.nix diff --git a/shenvs/anpi.nix b/shenvs/anpi.nix index d5828e3..b510c40 100644 --- a/shenvs/anpi.nix +++ b/shenvs/anpi.nix @@ -1,5 +1,11 @@ pkgs: { paths = with pkgs; [ octave + (python39.withPackages ( packages: with packages; [ + numpy + scipy + sympy + matplotlib + ] )) ]; } diff --git a/shenvs/jupyter.nix b/shenvs/jupyter.nix new file mode 100644 index 0000000..6e5a73e --- /dev/null +++ b/shenvs/jupyter.nix @@ -0,0 +1,11 @@ +pkgs: { + paths = with pkgs; [ + (python39.withPackages ( packages: with packages; [ + jupyterlab + matplotlib + numpy + scipy + sympy + ] )) + ]; +}