actualiza shenv de anpi y crea shenv de jupyter

This commit is contained in:
Fabián Montero 2022-04-20 03:37:24 -06:00
parent 78f8c2a547
commit bbdd2d9731
2 changed files with 17 additions and 0 deletions

View file

@ -1,5 +1,11 @@
pkgs: {
paths = with pkgs; [
octave
(python39.withPackages ( packages: with packages; [
numpy
scipy
sympy
matplotlib
] ))
];
}

11
shenvs/jupyter.nix Normal file
View file

@ -0,0 +1,11 @@
pkgs: {
paths = with pkgs; [
(python39.withPackages ( packages: with packages; [
jupyterlab
matplotlib
numpy
scipy
sympy
] ))
];
}