feature: add workshop 3 template

This commit is contained in:
2026-05-28 10:31:27 +02:00
parent 26081fdf44
commit fd460ee658
7 changed files with 20685 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
{ 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
];
}