blob: b60b455ef6f37239db5d68163db98da2785511b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
self: super: {
defaultPythonEnv = super.buildEnv {
name = "defaultPythonEnv";
paths = [
(self.python3.withPackages (
ps: with ps; [
ipython
# Math stuff
numpy scipy matplotlib
]
))
];
};
}
|