arregla shenv para jupyter
This commit is contained in:
parent
f10b127906
commit
f36e352257
|
@ -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;
|
||||||
|
})
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue