mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 03:30:45 +00:00
17 lines
265 B
Nix
17 lines
265 B
Nix
{ buildPythonPackage, usbrelay }:
|
|
|
|
buildPythonPackage {
|
|
pname = "usbrelay_py";
|
|
inherit (usbrelay) version src;
|
|
|
|
preConfigure = ''
|
|
cd usbrelay_py
|
|
'';
|
|
|
|
buildInputs = [ usbrelay ];
|
|
|
|
pythonImportsCheck = [ "usbrelay_py" ];
|
|
|
|
inherit (usbrelay) meta;
|
|
}
|