mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-14 15:26:34 +01:00
17 lines
278 B
Nix
17 lines
278 B
Nix
{
|
|
buildPythonPackage,
|
|
remctl-c, # remctl from pkgs, not from pythonPackages
|
|
}:
|
|
|
|
buildPythonPackage {
|
|
format = "setuptools";
|
|
inherit (remctl-c)
|
|
meta
|
|
pname
|
|
src
|
|
version
|
|
;
|
|
setSourceRoot = "sourceRoot=$(echo */python)";
|
|
|
|
buildInputs = [ remctl-c ];
|
|
}
|