devenv/python-data-science.nix
coolneng 5fd053f4c4
Revert "Run jupyter automatically in python datasci"
This reverts commit b5abb0950777ba2f4afabf3ace70f4b66b82f017.
2023-04-20 10:13:15 +02:00

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
];
}