13 lines
193 B
Nix
13 lines
193 B
Nix
|
{pkgs, ...}: {
|
||
|
kernel.python.scientific = {
|
||
|
enable = true;
|
||
|
extraPackages = ps: [
|
||
|
ps.numpy
|
||
|
ps.pandas
|
||
|
ps.matplotlib
|
||
|
ps.networkx
|
||
|
ps.altair
|
||
|
];
|
||
|
};
|
||
|
}
|