add jupyter-core override

This commit is contained in:
Valentin Boettcher 2021-12-09 15:36:46 +01:00
parent ff1dd5646e
commit a91037ca0a

View file

@ -55,6 +55,15 @@
];
}
);
jupyter-core = super.jupyter-core.overridePythonAttrs (
old: {
postInstall = old.postInstall + ''
rm $out/lib/python*/site-packages/__pycache__/jupyter.cpython-39.pyc
rm $out/lib/python*/site-packages/jupyter.py
'';
}
);
});
in
{