3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/os-specific/linux/usbrelay/python.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
269 B
Nix
Raw Normal View History

2022-03-29 22:54:42 +01:00
{ buildPythonPackage, usbrelay }:
buildPythonPackage rec {
pname = "usbrelay_py";
inherit (usbrelay) version src;
2022-09-16 23:19:18 +01:00
preConfigure = ''
cd usbrelay_py
'';
2022-03-29 22:54:42 +01:00
buildInputs = [ usbrelay ];
pythonImportsCheck = [ "usbrelay_py" ];
inherit (usbrelay) meta;
}