about summary refs log tree commit diff
path: root/nixpkgs/pkgs/os-specific/linux/usbrelay/python.nix
blob: 02d5ac284eda9aaaf9cd63956dec424a6f8b8c70 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ buildPythonPackage, usbrelay }:

buildPythonPackage rec {
  pname = "usbrelay_py";
  inherit (usbrelay) version src;

  buildInputs = [ usbrelay ];

  pythonImportsCheck = [ "usbrelay_py" ];

  inherit (usbrelay) meta;
}