Add python data science environment

This commit is contained in:
coolneng 2022-10-19 17:13:13 +02:00
parent 2246189635
commit c866015907
Signed by: coolneng
GPG Key ID: 9893DA236405AF57
1 changed files with 15 additions and 0 deletions

15
python-data-science.nix Normal file
View File

@ -0,0 +1,15 @@
{ config, lib, pkgs, ... }:
with pkgs;
{
buildInputs = [
python3
python3Packages.jupyter
python3Packages.numpy
python3Packages.pandas
python3Packages.scikit-learn
python3Packages.matplotlib
python3Packages.seaborn
];
}