t14_legacy_config/shenvs/jupyter.nix
2022-05-03 15:44:26 -06:00

23 lines
417 B
Nix

pkgs: {
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;
})
];
}