summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2023-09-07 10:31:03 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2023-09-07 10:31:03 +0200
commitbda16445a28dc46d7d051c3eb8ca22c2938d595b (patch)
treeceec65a6e112f6ade6f89994344172d8efec8f4f
parent572baf84bf0417b37b13743cc7dbabf850373a96 (diff)
downloadnixpkgs-bda16445a28dc46d7d051c3eb8ca22c2938d595b.tar
nixpkgs-bda16445a28dc46d7d051c3eb8ca22c2938d595b.tar.gz
nixpkgs-bda16445a28dc46d7d051c3eb8ca22c2938d595b.tar.bz2
nixpkgs-bda16445a28dc46d7d051c3eb8ca22c2938d595b.tar.lz
nixpkgs-bda16445a28dc46d7d051c3eb8ca22c2938d595b.tar.xz
nixpkgs-bda16445a28dc46d7d051c3eb8ca22c2938d595b.tar.zst
nixpkgs-bda16445a28dc46d7d051c3eb8ca22c2938d595b.zip
python311Packages.aiorecollect: 2023.08.0 -> 2023.09.0
Changelog: https://github.com/bachya/aiorecollect/releases/tag/2023.09.0
-rw-r--r--pkgs/development/python-modules/aiorecollect/default.nix24
1 files changed, 5 insertions, 19 deletions
diff --git a/pkgs/development/python-modules/aiorecollect/default.nix b/pkgs/development/python-modules/aiorecollect/default.nix
index c5fdc3f8f36..352f7eb9603 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 ];
   };