summary refs log tree commit diff
path: root/pkgs/development/python-modules/broadlink/default.nix
blob: ba635a39257d1186780fc3c03ca7c371671c26a6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{ lib
, buildPythonPackage
, fetchPypi
, cryptography
, pythonOlder
}:

buildPythonPackage rec {
  pname = "broadlink";
  version = "0.18.1";
  format = "setuptools";

  disabled = pythonOlder "3.7";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-KMfL1mY4th87gjPrdhvzQjdXucgwSChsykOCO3cPAD8=";
  };

  propagatedBuildInputs = [
    cryptography
  ];

  # Module has no tests
  doCheck = false;

  pythonImportsCheck = [
    "broadlink"
  ];

  meta = with lib; {
    description = "Python API for controlling Broadlink IR controllers";
    homepage =  "https://github.com/mjg59/python-broadlink";
    license = licenses.mit;
    maintainers = with maintainers; [ fab ];
  };
}