linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / pywilight / default.nix
blob4fa4c0fa854279f11ee9a4cc436fb9a1ec2ff8d4
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , ifaddr
5 , requests
6 }:
8 buildPythonPackage rec {
9   pname = "pywilight";
10   version = "0.0.68";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "1s1xyw5hkfr4rlni1p9z4941pp1740fsg4a3b23a618hv2p1i4ww";
15   };
17   propagatedBuildInputs = [
18     ifaddr
19     requests
20   ];
22   # no tests are present
23   doCheck = false;
24   pythonImportsCheck = [ "pywilight" ];
26   meta = with lib; {
27     description = "Python API for WiLight device";
28     homepage = "https://github.com/leofig-rj/pywilight";
29     license = with licenses; [ mit ];
30     maintainers = with maintainers; [ fab ];
31   };