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: {
paths = with pkgs; [
(python39.withPackages ( packages: with packages; [
jupyterlab
matplotlib
numpy
octave
scipy
sympy
] ))
paths = with pkgs;
let
python3 = python39.withPackages ( ps: with ps; [
matplotlib
numpy
scipy
sympy
]);
jupyterPath = jupyter-kernel.create { definitions = {
octave = octave-kernel.definition;
};};
in
[
(jupyter.override {
definitions = {
octave = octave-kernel.definition;
};
inherit python3;
})
];
}