It's a good thing that I'm not collaborating with anyone on this repository, because this is REALLY bad practice.
13 lines
192 B
Nix
13 lines
192 B
Nix
{ python3
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication {
|
|
pname = "hello";
|
|
version = "0.1";
|
|
src = ./.;
|
|
|
|
pyproject = true;
|
|
build-system = [ python3.pkgs.setuptools ];
|
|
|
|
doCheck = false;
|
|
}
|