14 buildPythonPackage rec {
15 pname = "aiorecollect";
16 version = "2023.12.0";
19 disabled = pythonOlder "3.9";
21 src = fetchFromGitHub {
24 rev = "refs/tags/${version}";
25 hash = "sha256-Rj0+r7eERLY5VzmuDQH/TeVLfmvmKwPqcvd1b/To0Ts=";
29 # this is not used directly by the project
30 sed -i '/certifi =/d' pyproject.toml
37 propagatedBuildInputs = [
41 __darwinAllowLocalNetworking = true;
51 # Ignore the examples directory as the files are prefixed with test_.
55 pythonImportsCheck = [
60 description = "Python library for the Recollect Waste API";
62 aiorecollect is a Python asyncio-based library for the ReCollect
63 Waste API. It allows users to programmatically retrieve schedules
64 for waste removal in their area, including trash, recycling, compost
67 homepage = "https://github.com/bachya/aiorecollect";
68 changelog = "https://github.com/bachya/aiorecollect/releases/tag/${version}";
69 license = with licenses; [ mit ];
70 maintainers = with maintainers; [ fab ];