Files
cas-pml/SL/aufgaben/workshop2/devenv.nix
T
2026-05-21 14:16:30 +02:00

28 lines
396 B
Nix

{ pkgs, lib, config, ... }:
{
languages.python = {
enable = true;
version = "3.12";
venv.enable = true;
venv.requirements = ''
ipython
jupyter
jupyterlab
numpy
pandas
matplotlib
seaborn
scikit-learn
imbalanced-learn
statsmodels
ydata-profiling
'';
};
packages = [
pkgs.graphviz
pkgs.zsh
];
}