summaryrefslogtreecommitdiff
path: root/shenvs
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2022-06-15 20:23:19 -0600
committerAlejandro Soto <alejandro@34project.org>2022-06-15 20:23:19 -0600
commit65df60bbbf0d421fee00456ca325a5faca276f2c (patch)
tree507cced58f4fea6b91a2cdca023ff7ddc66ef2d7 /shenvs
parent9488a1180b1b05875e5fdbf309ce59c308c36c82 (diff)
shenvs/stats: create
Diffstat (limited to 'shenvs')
-rw-r--r--shenvs/stats.nix11
1 files changed, 11 insertions, 0 deletions
diff --git a/shenvs/stats.nix b/shenvs/stats.nix
new file mode 100644
index 0000000..04e4172
--- /dev/null
+++ b/shenvs/stats.nix
@@ -0,0 +1,11 @@
+pkgs: with pkgs.lib;
+ let py = with pkgs; python39.withPackages (packages: with packages; [
+ numpy
+ scipy
+ matplotlib
+ pandas
+ ipython
+ ]);
+in {
+ paths = [ py ];
+}