Files
nixpkgs/pkgs/os-specific/linux/usbrelay/python.nix
T
2023-06-02 08:21:37 +02:00

17 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;
}