t14_legacy_config/shenvs/jupyter.nix

23 lines
417 B
Nix
Raw Normal View History

pkgs: {
2022-05-03 23:44:26 +02:00
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;
})
];
}