{ lib , aiohttp , aresponses , buildPythonPackage , fetchFromGitHub , freezegun , poetry-core , pytest-asyncio , pytestCheckHook , pythonOlder }: buildPythonPackage rec { pname = "aiorecollect"; version = "2021.10.0"; format = "pyproject"; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "bachya"; repo = pname; rev = version; sha256 = "sha256-cLutszJ8VXGcqb8kZv7Qn1ZD/LRYjVgQWQxNMHNd0UQ="; }; nativeBuildInputs = [ poetry-core ]; propagatedBuildInputs = [ aiohttp ]; checkInputs = [ aresponses freezegun pytest-asyncio pytestCheckHook ]; disabledTestPaths = [ # Ignore the examples directory as the files are prefixed with test_. "examples/" ]; pythonImportsCheck = [ "aiorecollect" ]; meta = with lib; { description = "Python library for the Recollect Waste API"; longDescription = '' aiorecollect is a Python asyncio-based library for the ReCollect Waste API. It allows users to programmatically retrieve schedules for waste removal in their area, including trash, recycling, compost and more. ''; homepage = "https://github.com/bachya/aiorecollect"; license = with licenses; [ mit ]; maintainers = with maintainers; [ fab ]; }; }