devenv/python-data-science.nix

20 lines
311 B
Nix
Raw Normal View History

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