Housekeeping

main
mat ess 2023-08-11 16:05:51 -04:00
parent 25e4d94c2e
commit c211bb11a2
2 changed files with 14 additions and 2 deletions

5
.gitignore vendored
View File

@ -1,2 +1,7 @@
dist
__pycache__
*.py[cod]
.coverage.*
.*_cache
.pre-commit-config.yaml
.vscode

View File

@ -36,9 +36,13 @@
echo "welcome to your python project >~(:)=====--" 1>&2
'';
nativeBuildInputs = builtins.attrValues {
inherit (pkgs)
hatch
inherit (pkgs.python311Packages)
hatchling
tomli
;
hatch = pkgs.hatch.override {
python3 = pkgs.python311;
};
};
buildInputs = builtins.attrValues {
inherit (pkgs)
@ -47,6 +51,9 @@
pyright
ruff
;
inherit (pkgs.python311Packages)
ipython
;
};
};
};