From 22b55822f1b4400d1cde636153517051248dbf7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabi=C3=A1n=20Montero?= Date: Mon, 15 Aug 2022 20:36:17 -0600 Subject: [PATCH] =?UTF-8?q?a=C3=B1ade=20shenv=20de=20proba?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- shenvs/config.nix | 1 + shenvs/proba.nix | 11 +++++++++++ 2 files changed, 12 insertions(+) create mode 100644 shenvs/proba.nix diff --git a/shenvs/config.nix b/shenvs/config.nix index d5c3569..d2870f4 100644 --- a/shenvs/config.nix +++ b/shenvs/config.nix @@ -3,6 +3,7 @@ shenvs: { c mad octave + proba tcrb ]; } diff --git a/shenvs/proba.nix b/shenvs/proba.nix new file mode 100644 index 0000000..fcb7356 --- /dev/null +++ b/shenvs/proba.nix @@ -0,0 +1,11 @@ +pkgs: { + paths = with pkgs; [ + pipenv + (python310.withPackages ( packages: with packages; [ + matplotlib + numpy + pandas + scipy + ])) + ]; +}