flake-template-hell/templates/python/flake/package.nix

16 lines
273 B
Nix

{
python3Packages
}: let
ps = python3Packages;
in ps.buildPythonApplication {
pname = "REPLACE_ME";
version = "REPLACE_VER";
src = builtins.filterSource (path: _: baseNameOf path != ".git") ../.;
pyproject = true;
build-system = [
ps.setuptools
];
}