depot/third_party/nixpkgs/pkgs/os-specific/linux/usbrelay/python.nix

13 lines
223 B
Nix
Raw Normal View History

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