nixpkgs-odroid-hc4/pkgs/os-specific/linux/usbrelay/python.nix
2025-12-20 09:59:59 +11:00

12 lines
223 B
Nix

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