python3Packages.pytibber: 0.22.0 -> 0.22.1

https://github.com/Danielhiversen/pyTibber/releases/tag/0.22.1
This commit is contained in:
Robert Schütz 2022-02-07 01:23:05 +00:00 committed by Jonathan Ringer
parent 3724b8cfa8
commit 5749c2be28

View file

@ -7,21 +7,22 @@
, graphql-subscription-manager
, python-dateutil
, pytz
, pytest-asyncio
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "pytibber";
version = "0.22.0";
version = "0.22.1";
format = "setuptools";
disabled = pythonOlder "3.7";
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "Danielhiversen";
repo = "pyTibber";
rev = version;
hash = "sha256-4eARNxVXtJtUC0oxym1kv5z+WkxgCHJZtN3MrIMA8+s=";
hash = "sha256-kzKY9ixsAkfee5En0IzYl5izeXq3xY/8bc5Kz/qkE7U=";
};
propagatedBuildInputs = [
@ -33,6 +34,7 @@ buildPythonPackage rec {
];
checkInputs = [
pytest-asyncio
pytestCheckHook
];