nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 22.05 12 lines 223 B view raw
1{ buildPythonPackage, usbrelay }: 2 3buildPythonPackage rec { 4 pname = "usbrelay_py"; 5 inherit (usbrelay) version src; 6 7 buildInputs = [ usbrelay ]; 8 9 pythonImportsCheck = [ "usbrelay_py" ]; 10 11 inherit (usbrelay) meta; 12}