Housekeeping
parent
25e4d94c2e
commit
c211bb11a2
|
@ -1,2 +1,7 @@
|
||||||
dist
|
dist
|
||||||
|
__pycache__
|
||||||
*.py[cod]
|
*.py[cod]
|
||||||
|
.coverage.*
|
||||||
|
.*_cache
|
||||||
|
.pre-commit-config.yaml
|
||||||
|
.vscode
|
||||||
|
|
11
flake.nix
11
flake.nix
|
@ -36,9 +36,13 @@
|
||||||
echo "welcome to your python project >~(:)=====--" 1>&2
|
echo "welcome to your python project >~(:)=====--" 1>&2
|
||||||
'';
|
'';
|
||||||
nativeBuildInputs = builtins.attrValues {
|
nativeBuildInputs = builtins.attrValues {
|
||||||
inherit (pkgs)
|
inherit (pkgs.python311Packages)
|
||||||
hatch
|
hatchling
|
||||||
|
tomli
|
||||||
;
|
;
|
||||||
|
hatch = pkgs.hatch.override {
|
||||||
|
python3 = pkgs.python311;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
buildInputs = builtins.attrValues {
|
buildInputs = builtins.attrValues {
|
||||||
inherit (pkgs)
|
inherit (pkgs)
|
||||||
|
@ -47,6 +51,9 @@
|
||||||
pyright
|
pyright
|
||||||
ruff
|
ruff
|
||||||
;
|
;
|
||||||
|
inherit (pkgs.python311Packages)
|
||||||
|
ipython
|
||||||
|
;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue