initial commit

This commit is contained in:
2025-11-03 09:16:40 +01:00
commit 0e48e52f8a
9 changed files with 960 additions and 0 deletions

15
shell.nix Normal file
View File

@@ -0,0 +1,15 @@
{
pkgs ? import <nixpkgs> { },
}:
pkgs.mkShell {
buildInputs = with pkgs; [
python3
python3Packages.notebook
python3Packages.numpy
python3Packages.matplotlib
graphviz
python3Packages.networkx
python3Packages.pydot
];
}