2022-10-20 10:29:28 +02:00
|
|
|
{ pkgs ? import <nixpkgs> { } }:
|
2022-10-19 17:13:13 +02:00
|
|
|
|
|
|
|
with pkgs;
|
|
|
|
|
2022-10-20 10:29:28 +02:00
|
|
|
mkShell {
|
2022-10-19 17:13:13 +02:00
|
|
|
buildInputs = [
|
|
|
|
python3
|
|
|
|
python3Packages.jupyter
|
|
|
|
python3Packages.numpy
|
|
|
|
python3Packages.pandas
|
|
|
|
python3Packages.scikit-learn
|
|
|
|
python3Packages.matplotlib
|
|
|
|
python3Packages.seaborn
|
|
|
|
];
|
2022-10-20 10:29:28 +02:00
|
|
|
|
|
|
|
shellHook = ''
|
|
|
|
jupyter notebook
|
|
|
|
'';
|
2022-10-19 17:13:13 +02:00
|
|
|
}
|