arregla shenv para jupyter

This commit is contained in:
Fabián Montero 2022-05-03 15:44:26 -06:00
parent f10b127906
commit f36e352257

View file

@ -1,12 +1,22 @@
pkgs: { pkgs: {
paths = with pkgs; [ paths = with pkgs;
(python39.withPackages ( packages: with packages; [ let
jupyterlab python3 = python39.withPackages ( ps: with ps; [
matplotlib matplotlib
numpy numpy
octave scipy
scipy sympy
sympy ]);
] )) jupyterPath = jupyter-kernel.create { definitions = {
octave = octave-kernel.definition;
};};
in
[
(jupyter.override {
definitions = {
octave = octave-kernel.definition;
};
inherit python3;
})
]; ];
} }