linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / python-nest / default.nix
blobc894654e41e68bf353ea81c7ad64c4eb4f655924
1 { buildPythonPackage, fetchPypi, lib, python, python-dateutil, requests
2 , six, sseclient-py }:
4 buildPythonPackage rec {
5   pname = "python-nest";
6   version = "4.1.0";
8   src = fetchPypi {
9     inherit pname version;
10     sha256 = "12iyypbl92ybh8w1bf4z0c2g0sb9id2c07c89vzvnlxgjylw3wbi";
11   };
13   propagatedBuildInputs = [ python-dateutil requests six sseclient-py ];
14   # has no tests
15   doCheck = false;
16   pythonImportsCheck = [ "nest" ];
18   meta = with lib; {
19     description =
20       "Python API and command line tool for talking to the Nestâ„¢ Thermostat";
21     homepage = "https://github.com/jkoelker/python-nest";
22     license = licenses.cc-by-nc-sa-40;
23     maintainers = with maintainers; [ jamiemagee ];
24   };