From e4ad5fa9aef6a7431c6a0f32f1b99208389c4966 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 31 Aug 2025 01:20:01 +0000 Subject: [PATCH] python3Packages.oslo-concurrency: 7.1.0 -> 7.2.0 --- .../python-modules/oslo-concurrency/default.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/oslo-concurrency/default.nix b/pkgs/development/python-modules/oslo-concurrency/default.nix index e554b710e723..f64d6e7cdddf 100644 --- a/pkgs/development/python-modules/oslo-concurrency/default.nix +++ b/pkgs/development/python-modules/oslo-concurrency/default.nix @@ -4,12 +4,14 @@ fetchPypi, bash, coreutils, + debtcollector, eventlet, fasteners, fixtures, iana-etc, libredirect, oslo-config, + oslo-i18n, oslo-utils, oslotest, pbr, @@ -19,13 +21,13 @@ buildPythonPackage rec { pname = "oslo-concurrency"; - version = "7.1.0"; + version = "7.2.0"; pyproject = true; src = fetchPypi { pname = "oslo_concurrency"; inherit version; - hash = "sha256-34qHf4ACsH1p8dDnDbzvSSDTkkmqpi5Hj60haz3UFMs="; + hash = "sha256-Fg6BTIVJ9qRk53oEJl7ZltWBvdP9O9Tr8xHTRGu34ao="; }; postPatch = '' @@ -43,8 +45,10 @@ buildPythonPackage rec { build-system = [ setuptools ]; dependencies = [ + debtcollector fasteners oslo-config + oslo-i18n oslo-utils pbr ];