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