2022-04-27 09:35:20 +00:00
|
|
|
{ buildPythonPackage, usbrelay }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "usbrelay_py";
|
|
|
|
inherit (usbrelay) version src;
|
|
|
|
|
2022-09-22 12:36:57 +00:00
|
|
|
preConfigure = ''
|
|
|
|
cd usbrelay_py
|
|
|
|
'';
|
|
|
|
|
2022-04-27 09:35:20 +00:00
|
|
|
buildInputs = [ usbrelay ];
|
|
|
|
|
|
|
|
pythonImportsCheck = [ "usbrelay_py" ];
|
|
|
|
|
|
|
|
inherit (usbrelay) meta;
|
|
|
|
}
|