2023-04-20 10:13:15 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
2022-10-19 17:13:13 +02:00
|
|
|
|
|
|
|
with pkgs;
|
|
|
|
|
2023-04-20 10:13:15 +02:00
|
|
|
{
|
2022-10-19 17:13:13 +02:00
|
|
|
buildInputs = [
|
|
|
|
python3
|
|
|
|
python3Packages.jupyter
|
|
|
|
python3Packages.numpy
|
|
|
|
python3Packages.pandas
|
|
|
|
python3Packages.scikit-learn
|
|
|
|
python3Packages.matplotlib
|
|
|
|
python3Packages.seaborn
|
|
|
|
];
|
|
|
|
}
|