22017988c6
GitOrigin-RevId: c777cdf5c564015d5f63b09cc93bef4178b19b01
12 lines
223 B
Nix
12 lines
223 B
Nix
{ buildPythonPackage, usbrelay }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "usbrelay_py";
|
|
inherit (usbrelay) version src;
|
|
|
|
buildInputs = [ usbrelay ];
|
|
|
|
pythonImportsCheck = [ "usbrelay_py" ];
|
|
|
|
inherit (usbrelay) meta;
|
|
}
|