about summary refs log tree commit diff
path: root/pkgs/development/python-modules/aiormq
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2023-11-30 23:17:57 +0100
committerMartin Weinelt <hexa@darmstadt.ccc.de>2023-12-20 20:10:29 +0100
commit46e7e7b1b0fb55ea9830d35d357ab53ecdd224a0 (patch)
treefbc2d0768eabf7206279690fc6b5ec9dc96bbc57 /pkgs/development/python-modules/aiormq
parent735551d0a325cd8904d2f8512978541f8d01f2fe (diff)
python311Packages.aiormq: 6.7.7 -> 6.7.6
https://github.com/mosquito/aiormq/releases/tag/6.7.6
Diffstat (limited to 'pkgs/development/python-modules/aiormq')
-rw-r--r--pkgs/development/python-modules/aiormq/default.nix10
1 files changed, 4 insertions, 6 deletions
diff --git a/pkgs/development/python-modules/aiormq/default.nix b/pkgs/development/python-modules/aiormq/default.nix
index 3a5b809c13feb..14c0d0f7b5133 100644
--- a/pkgs/development/python-modules/aiormq/default.nix
+++ b/pkgs/development/python-modules/aiormq/default.nix
@@ -6,9 +6,7 @@
 , pytestCheckHook
 , pamqp
 , yarl
-, setuptools
 , poetry-core
-, aiomisc
 }:
 
 buildPythonPackage rec {
@@ -20,13 +18,13 @@ buildPythonPackage rec {
 
   src = fetchFromGitHub {
     owner = "mosquito";
-    repo = pname;
-    rev = "refs/tags/${version}";
-    hash = "sha256-X5Uy1DGxvsyEFR1UgVYqxOX6mESLnNzQl7sVkvzjcw4=";
+    repo = "aiormq";
+    # https://github.com/mosquito/aiormq/issues/189
+    rev = "72c44f55313fc14e2a760a45a09831237b64c48d";
+    hash = "sha256-IIlna8aQY6bIA7OZHthfvMFFWnf3DDRBP1uiFCD7+Do=";
   };
 
   nativeBuildInputs = [
-    setuptools
     poetry-core
   ];