From bda16445a28dc46d7d051c3eb8ca22c2938d595b Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 7 Sep 2023 10:31:03 +0200 Subject: [PATCH] python311Packages.aiorecollect: 2023.08.0 -> 2023.09.0 Changelog: https://github.com/bachya/aiorecollect/releases/tag/2023.09.0 --- .../python-modules/aiorecollect/default.nix | 24 ++++--------------- 1 file changed, 5 insertions(+), 19 deletions(-) diff --git a/pkgs/development/python-modules/aiorecollect/default.nix b/pkgs/development/python-modules/aiorecollect/default.nix index c5fdc3f8f36f..352f7eb9603d 100644 --- a/pkgs/development/python-modules/aiorecollect/default.nix +++ b/pkgs/development/python-modules/aiorecollect/default.nix @@ -13,33 +13,18 @@ buildPythonPackage rec { pname = "aiorecollect"; - version = "2023.08.0"; + version = "2023.09.0"; format = "pyproject"; - disabled = pythonOlder "3.7"; + disabled = pythonOlder "3.9"; src = fetchFromGitHub { owner = "bachya"; repo = pname; - rev = version; - hash = "sha256-oTkWirq3w0DgQWWe0ziK+ry4pg6j6SQbBESLG4xgDE4="; + rev = "refs/tags/${version}"; + hash = "sha256-45LgfCA8037GqP4WfEjE4hj2YdKUGu2hGrQ/f0r1PAI="; }; - patches = [ - # This patch removes references to setuptools and wheel that are no longer - # necessary and changes poetry to poetry-core, so that we don't need to add - # unnecessary nativeBuildInputs. - # - # https://github.com/bachya/aiorecollect/pull/207 - # - (fetchpatch { - name = "clean-up-dependencies.patch"; - url = "https://github.com/bachya/aiorecollect/commit/0bfddead1c1b176be4d599b8e12ed608eac97b8b.patch"; - hash = "sha256-w/LAtyuyYsAAukDeIy8XLlp9QrydC1Wmi2zxEj1Zdm8="; - includes = [ "pyproject.toml" ]; - }) - ]; - postPatch = '' # this is not used directly by the project sed -i '/certifi =/d' pyproject.toml @@ -80,6 +65,7 @@ buildPythonPackage rec { and more. ''; homepage = "https://github.com/bachya/aiorecollect"; + changelog = "https://github.com/bachya/aiorecollect/releases/tag/${version}"; license = with licenses; [ mit ]; maintainers = with maintainers; [ fab ]; };