{ lib , buildPythonPackage , pythonOlder , fetchFromGitHub , aiohttp , async-timeout , graphql-subscription-manager , python-dateutil , pytz , pytest-asyncio , pytestCheckHook }: buildPythonPackage rec { pname = "pytibber"; version = "0.22.3"; format = "setuptools"; disabled = pythonOlder "3.9"; src = fetchFromGitHub { owner = "Danielhiversen"; repo = "pyTibber"; rev = version; hash = "sha256-tM8Uu/TpP5a7y+ePFko0bMoZJWG2efYA861Ez8dPeFY="; }; propagatedBuildInputs = [ aiohttp async-timeout graphql-subscription-manager python-dateutil pytz ]; checkInputs = [ pytest-asyncio pytestCheckHook ]; pytestFlagsArray = [ "test/test.py" ]; # tests access network doCheck = false; pythonImportsCheck = [ "tibber" ]; meta = with lib; { description = "Python library to communicate with Tibber"; homepage = "https://github.com/Danielhiversen/pyTibber"; license = licenses.mit; maintainers = with maintainers; [ dotlambda ]; }; }