Files
cas-pml/ML/aufgaben/devenv.nix
T
2026-04-30 16:49:03 +02:00

22 lines
291 B
Nix

{ pkgs, lib, config, ... }:
{
languages.python = {
enable = true;
version = "3.14.4";
venv.enable = true;
venv.requirements = ''
ipython
jupyter
matplotlib
numpy
scikit-learn
'';
};
packages = [
pkgs.graphviz
pkgs.zsh
];
}