13 lines
211 B
Nix
13 lines
211 B
Nix
|
{config, lib, pkgs, ...}: {
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
(pkgs.python3.withPackages (p: with p; [
|
||
|
numpy
|
||
|
scipy
|
||
|
pandas
|
||
|
matplotlib
|
||
|
tqdm
|
||
|
seaborn
|
||
|
]))
|
||
|
];
|
||
|
}
|