mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
16 lines
265 B
Nix
16 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;
|
|
}
|