Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / venstarcolortouch / default.nix
blob04d632b0a185eee45c561208707e91fe7670fb5d
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , requests
5 }:
7 buildPythonPackage rec {
8   pname = "venstarcolortouch";
9   version = "0.19";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     hash = "sha256-QjcoF46GrBH7ExGQno8xDgtOSGNxhAP+NycJb22hL+E=";
15   };
17   propagatedBuildInputs = [
18     requests
19   ];
21   # Project has no tests
22   doCheck = false;
24   pythonImportsCheck = [
25     "venstarcolortouch"
26   ];
28   meta = with lib; {
29     description = "Python interface for Venstar ColorTouch thermostats Resources";
30     homepage = "https://github.com/hpeyerl/venstar_colortouch";
31     license = with licenses; [ mit ];
32     maintainers = with maintainers; [ fab ];
33   };