feature: add workshop 4 solution

This commit is contained in:
2026-05-28 21:11:16 +02:00
parent 5e4151d261
commit 0ed9ecdb7d
6 changed files with 10247 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
{ pkgs, lib, config, ... }:
{
languages.python = {
enable = true;
version = "3.12";
venv.enable = true;
venv.requirements = ''
imbalanced-learn
ipython
jupyter
jupyterlab
matplotlib
numpy
pandas
scikit-learn
seaborn
setuptools<81
statsmodels
ydata-profiling
'';
};
packages = [
pkgs.graphviz
pkgs.zsh
pkgs.zlib
];
}