añade symbolic a jupyter shenv
This commit is contained in:
parent
a5ac598a47
commit
7f0704a6fe
|
@ -8,15 +8,21 @@ pkgs: {
|
|||
sympy
|
||||
]);
|
||||
jupyterPath = jupyter-kernel.create { definitions = {
|
||||
octave = octave-kernel.definition;
|
||||
octave = octave-kernel.definition;
|
||||
};};
|
||||
in
|
||||
[
|
||||
(jupyter.override {
|
||||
definitions = {
|
||||
octave = octave-kernel.definition;
|
||||
octave = let
|
||||
withPackages = pkgs.octave.withPackages (ps: with ps; [
|
||||
symbolic
|
||||
]);
|
||||
octave = withPackages.overrideAttrs (super: { inherit (pkgs.octave) version src; });
|
||||
kernel = octave-kernel.override { inherit octave; };
|
||||
in kernel.definition;
|
||||
};
|
||||
inherit python3;
|
||||
inherit python3;
|
||||
})
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue