elimina jupyter

This commit is contained in:
Fabián Montero 2022-08-15 18:51:17 -06:00
parent 54c9468420
commit 29f7f77f89
2 changed files with 0 additions and 31 deletions

View file

@ -1,7 +1,6 @@
shenvs: {
gcKeep = with shenvs; [
c
jupyter
mad
octave
tcrb

View file

@ -1,30 +0,0 @@
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 = 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;
})
gnuplot
ghostscript
];
}