about summary refs log tree commit diff
path: root/pkgs/development/python-modules/aioguardian/default.nix
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2023-11-29 10:19:24 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2023-11-29 10:19:24 +0100
commitf4d27e37402b75f99ab57eda6e6ec275b16d4874 (patch)
treede6e2fcf053f795e65d759712e11e88a08536e65 /pkgs/development/python-modules/aioguardian/default.nix
parent76f642f87ff9b752ec652efc75234cf2fdc446aa (diff)
python311Packages.aioguardian: 2023.08.0 -> 2023.11.0
Diff: https://github.com/bachya/aioguardian/compare/refs/tags/2023.08.0...2023.11.0

Changelog: https://github.com/bachya/aioguardian/releases/tag/2023.11.0
Diffstat (limited to 'pkgs/development/python-modules/aioguardian/default.nix')
-rw-r--r--pkgs/development/python-modules/aioguardian/default.nix23
1 files changed, 4 insertions, 19 deletions
diff --git a/pkgs/development/python-modules/aioguardian/default.nix b/pkgs/development/python-modules/aioguardian/default.nix
index aa0dbd64be804..3b72b53045b00 100644
--- a/pkgs/development/python-modules/aioguardian/default.nix
+++ b/pkgs/development/python-modules/aioguardian/default.nix
@@ -5,7 +5,6 @@
 , buildPythonPackage
 , docutils
 , fetchFromGitHub
-, fetchpatch
 , poetry-core
 , pytest-aiohttp
 , pytest-asyncio
@@ -16,32 +15,18 @@
 
 buildPythonPackage rec {
   pname = "aioguardian";
-  version = "2023.08.0";
-  format = "pyproject";
+  version = "2023.11.0";
+  pyproject = true;
 
   disabled = pythonOlder "3.9";
 
   src = fetchFromGitHub {
     owner = "bachya";
-    repo = pname;
+    repo = "aioguardian";
     rev = "refs/tags/${version}";
-    hash = "sha256-/UNSAfAkOXPJQDWBZIe/AYIhx83kPCjGzZjn4oh+gfY=";
+    hash = "sha256-hTV6P9J7SS5lnV/9eFUCFPZu1GIeshytWQvNTbGs52w=";
   };
 
-  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/aioguardian/pull/288
-    #
-    (fetchpatch {
-      name = "clean-up-build-dependencies.patch";
-      url = "https://github.com/bachya/aioguardian/commit/ffaad4b396645f599815010995fb71ca976e761e.patch";
-      hash = "sha256-RLRbHmaR2A8MNc96WHx0L8ccyygoBUaOulAuRJkFuUM=";
-    })
-  ];
-
   nativeBuildInputs = [
     poetry-core
   ];