blob: aabcac9fa9eadc2047b873a8518a8038dd9c9928 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
self: super: {
defaultPythonEnv = super.buildEnv {
name = "defaultPythonEnv";
paths = [
(self.python3.withPackages (
ps: with ps; [
ipython python-language-server pep8
jupyterlab jupyter-c-kernel
# Math stuff
numpy scipy matplotlib
]
))
];
};
}
|