8 lines
159 B
Nix
8 lines
159 B
Nix
|
{ setuptools, buildPythonPackage }:
|
||
|
buildPythonPackage {
|
||
|
name = "buildbot-nix";
|
||
|
format = "pyproject";
|
||
|
src = ./.;
|
||
|
nativeBuildInputs = [ setuptools ];
|
||
|
}
|