This commit is contained in:
Danilo Reyes
2025-11-01 21:20:05 -06:00
commit 75492c3b61
24 changed files with 5456 additions and 0 deletions

19
shell.nix Normal file
View File

@@ -0,0 +1,19 @@
{
pkgs ? import <nixpkgs> { },
}:
pkgs.mkShell {
packages =
[
(pkgs.python3.withPackages (
ps:
builtins.attrValues {
inherit (ps) setuptools;
}
))
]
++ builtins.attrValues {
inherit (pkgs) uv;
};
buildInputs = [ ];
}