From 6a1e9ef1b98eb3b97ce9bc9aa0a10a67d826d743 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 7 Feb 2021 22:39:46 +0100 Subject: [PATCH] python3Packages.aiorecollect: init 1.0.2 --- .../python-modules/aiorecollect/default.nix | 54 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 56 insertions(+) create mode 100644 pkgs/development/python-modules/aiorecollect/default.nix diff --git a/pkgs/development/python-modules/aiorecollect/default.nix b/pkgs/development/python-modules/aiorecollect/default.nix new file mode 100644 index 00000000000..c802633e572 --- /dev/null +++ b/pkgs/development/python-modules/aiorecollect/default.nix @@ -0,0 +1,54 @@ +{ lib +, aiohttp +, aresponses +, async-timeout +, buildPythonPackage +, fetchFromGitHub +, freezegun +, poetry-core +, pytest-asyncio +, pytest-cov +, pytestCheckHook +}: + +buildPythonPackage rec { + pname = "aiorecollect"; + version = "1.0.2"; + format = "pyproject"; + + src = fetchFromGitHub { + owner = "bachya"; + repo = pname; + rev = version; + sha256 = "0dlz8zmqcn6g6000lfgcy5krpfafzdzrznmk6iwra65wcs7l9392"; + }; + + nativeBuildInputs = [ poetry-core ]; + + propagatedBuildInputs = [ aiohttp ]; + + checkInputs = [ + aresponses + freezegun + pytest-asyncio + pytest-cov + pytestCheckHook + ]; + + # Ignore the examples as they are prefixed with test_ + pytestFlagsArray = [ "--ignore 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 ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 3d66eaaa5b0..8026f565e70 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -276,6 +276,8 @@ in { aiopulse = callPackage ../development/python-modules/aiopulse { }; + aiorecollect = callPackage ../development/python-modules/aiorecollect { }; + aioredis = callPackage ../development/python-modules/aioredis { }; aioresponses = callPackage ../development/python-modules/aioresponses { };