12 lines
149 B
Nix
12 lines
149 B
Nix
|
pkgs: {
|
||
|
paths = with pkgs; [
|
||
|
(python39.withPackages ( packages: with packages; [
|
||
|
jupyterlab
|
||
|
matplotlib
|
||
|
numpy
|
||
|
scipy
|
||
|
sympy
|
||
|
] ))
|
||
|
];
|
||
|
}
|