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 + ] )) + ]; +}