python3Packages.python-nest: 4.1.0 -> 4.2.0

This commit is contained in:
Fabian Affolter 2022-02-09 00:23:51 +01:00 committed by Jonathan Ringer
parent d303d90376
commit 92ffa5e9c9

View file

@ -1,23 +1,41 @@
{ buildPythonPackage, fetchPypi, lib, python-dateutil, requests
, six, sseclient-py }:
{ lib
, buildPythonPackage
, fetchPypi
, python-dateutil
, requests
, six
, sseclient-py
, pythonOlder
}:
buildPythonPackage rec {
pname = "python-nest";
version = "4.1.0";
version = "4.2.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "12iyypbl92ybh8w1bf4z0c2g0sb9id2c07c89vzvnlxgjylw3wbi";
hash = "sha256-01hoZbDssbJ10NA72gOtlzjZMGjsUBUoVDVM35uAOLU=";
};
propagatedBuildInputs = [ python-dateutil requests six sseclient-py ];
# has no tests
propagatedBuildInputs = [
python-dateutil
requests
six
sseclient-py
];
# Module has no tests
doCheck = false;
pythonImportsCheck = [ "nest" ];
pythonImportsCheck = [
"nest"
];
meta = with lib; {
description =
"Python API and command line tool for talking to the Nest Thermostat";
description = "Python API and command line tool for talking to the Nest Thermostat";
homepage = "https://github.com/jkoelker/python-nest";
license = licenses.cc-by-nc-sa-40;
maintainers = with maintainers; [ jamiemagee ];