From 500f49e60daa92215474451ad46a1533cceeb45e Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 22 Nov 2025 16:13:32 +0100 Subject: [PATCH 1/2] python313Packages.aiormq: 6.8.1 -> 6.9.2 Diff: https://github.com/mosquito/aiormq/compare/6.8.1...6.9.2 Changelog: https://github.com/mosquito/aiormq/releases/tag/6.9.2 --- pkgs/development/python-modules/aiormq/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/aiormq/default.nix b/pkgs/development/python-modules/aiormq/default.nix index 1565f4814b6b..d0aad1b713d1 100644 --- a/pkgs/development/python-modules/aiormq/default.nix +++ b/pkgs/development/python-modules/aiormq/default.nix @@ -12,7 +12,7 @@ buildPythonPackage rec { pname = "aiormq"; - version = "6.8.1"; + version = "6.9.2"; pyproject = true; disabled = pythonOlder "3.8"; @@ -21,7 +21,7 @@ buildPythonPackage rec { owner = "mosquito"; repo = "aiormq"; tag = version; - hash = "sha256-3+PoDB5Owy8BWBUisX0i1mV8rqs5K9pBFQwup8vKxlg="; + hash = "sha256-ApwL3okhpc3Dtq4bfWCCnoikyRx+4zPI9XtJ+qPKQdg="; }; nativeBuildInputs = [ From 1767ae8132e3f45b49906b343e910044537b179d Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 22 Nov 2025 16:22:25 +0100 Subject: [PATCH 2/2] python313Packages.aiormq: modernize --- pkgs/development/python-modules/aiormq/default.nix | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/pkgs/development/python-modules/aiormq/default.nix b/pkgs/development/python-modules/aiormq/default.nix index d0aad1b713d1..58ce082301dc 100644 --- a/pkgs/development/python-modules/aiormq/default.nix +++ b/pkgs/development/python-modules/aiormq/default.nix @@ -3,7 +3,6 @@ aiomisc-pytest, buildPythonPackage, fetchFromGitHub, - pythonOlder, pytestCheckHook, pamqp, yarl, @@ -15,8 +14,6 @@ buildPythonPackage rec { version = "6.9.2"; pyproject = true; - disabled = pythonOlder "3.8"; - src = fetchFromGitHub { owner = "mosquito"; repo = "aiormq"; @@ -24,13 +21,11 @@ buildPythonPackage rec { hash = "sha256-ApwL3okhpc3Dtq4bfWCCnoikyRx+4zPI9XtJ+qPKQdg="; }; - nativeBuildInputs = [ - poetry-core - ]; - pythonRelaxDeps = [ "pamqp" ]; - propagatedBuildInputs = [ + build-system = [ poetry-core ]; + + dependencies = [ pamqp yarl ];