guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 378efac5d099d00700bb3f40a243ab4f9687e60a
Author: Nicolas Graves <[email protected]>
AuthorDate: Thu Jul 24 04:09:25 2025 +0200
gnu: python-oslo-i18n: Update to 6.5.1.
* gnu/packages/openstack.scm (python-oslo-i18n): Update to 6.5.1.
[build-system]: Switch to pyproject-build-system.
[propagated-inputs]: Remove them.
[native-inputs]: Add python-coverage, python-debtcollector,
python-oslo-config, python-oslotest, python-pbr, python-setuptools,
python-stestr, python-testscenarios, python-wheel.
Change-Id: Ia8bce961c150f2e2e19739bc8628b17113d9ccba
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/openstack.scm | 23 +++++++++++++----------
1 file changed, 13 insertions(+), 10 deletions(-)
diff --git a/gnu/packages/openstack.scm b/gnu/packages/openstack.scm
index 4f8a850463..c49a7f1157 100644
--- a/gnu/packages/openstack.scm
+++ b/gnu/packages/openstack.scm
@@ -694,21 +694,24 @@ pipeline and used by various modules such as logging.")
(define-public python-oslo-i18n
(package
(name "python-oslo-i18n")
- (version "3.20.0")
+ (version "6.5.1")
(source
(origin
(method url-fetch)
- (uri (pypi-uri "oslo.i18n" version))
+ (uri (pypi-uri "oslo_i18n" version))
(sha256
- (base32
- "0kjcdw4bk3mi4vqmqwhhq053kxbbbj05si6nwxd1pzx33z067ky3"))))
- (build-system python-build-system)
- (arguments
- '(#:tests? #f)) ;avoid circular dependency on oslo.config
- (propagated-inputs
- (list python-babel python-six))
+ (base32 "178h7grww0brsdcp2iz87giappl928ir82arnvppcz5gqmq6m1ga"))))
+ (build-system pyproject-build-system)
(native-inputs
- (list python-pbr))
+ (list python-coverage
+ python-debtcollector
+ python-oslo-config
+ python-oslotest
+ python-pbr
+ python-setuptools
+ python-stestr
+ python-testscenarios
+ python-wheel))
(home-page "https://launchpad.net/oslo")
(synopsis "Oslo internationalization (i18n) library")
(description