nixpkgs/pkgs/os-specific/linux/usbrelay/python.nix
2022-09-18 22:54:13 +02:00

17 lines
269 B
Nix

{ buildPythonPackage, usbrelay }:
buildPythonPackage rec {
pname = "usbrelay_py";
inherit (usbrelay) version src;
preConfigure = ''
cd usbrelay_py
'';
buildInputs = [ usbrelay ];
pythonImportsCheck = [ "usbrelay_py" ];
inherit (usbrelay) meta;
}