Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / pywilight / default.nix
blobe25f24d4033470b667231e626b20878d98ece6f1
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , ifaddr
5 , requests
6 , pythonOlder
7 }:
9 buildPythonPackage rec {
10   pname = "pywilight";
11   version = "0.0.74";
12   format = "setuptools";
14   disabled = pythonOlder "3.7";
16   src = fetchPypi {
17     inherit pname version;
18     hash = "sha256-patCdQ7qLEfy+RpH9T/Fa8ubI7QF6OmLzFUokZc5syQ=";
19   };
21   propagatedBuildInputs = [
22     ifaddr
23     requests
24   ];
26   # Module has no tests
27   doCheck = false;
29   pythonImportsCheck = [
30     "pywilight"
31   ];
33   meta = with lib; {
34     description = "Python API for WiLight device";
35     homepage = "https://github.com/leofig-rj/pywilight";
36     license = with licenses; [ mit ];
37     maintainers = with maintainers; [ fab ];
38   };