blob: 0153538737d8081f1b62180fd6f23a92554a6b3d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
self: super: {
defaultPythonEnv = super.buildEnv {
name = "defaultPythonEnv";
paths = [
(self.python39.withPackages (
ps: with ps; [
ipython pep8
jupyterlab jupyter-c-kernel
python-lsp-server
# Math stuff
numpy scipy matplotlib
pillow networkx pydot
]
))
];
};
}
|