16 lines
273 B
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
|
|
];
|
|
}
|