16 lines
253 B
Nix
16 lines
253 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
with pkgs;
|
||
|
|
||
|
{
|
||
|
buildInputs = [
|
||
|
python3
|
||
|
python3Packages.jupyter
|
||
|
python3Packages.numpy
|
||
|
python3Packages.pandas
|
||
|
python3Packages.scikit-learn
|
||
|
python3Packages.matplotlib
|
||
|
python3Packages.seaborn
|
||
|
];
|
||
|
}
|