summaryrefslogtreecommitdiff
path: root/gnu/packages/openstack.scm
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-07-24 04:09:25 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-07-27 00:25:52 +0100
commit378efac5d099d00700bb3f40a243ab4f9687e60a (patch)
tree8eed8806e3ed8f3a6ffcfd1d364d4fed9b29c495 /gnu/packages/openstack.scm
parent2b6ba236074e04f947948381ccc1e43ab518bb29 (diff)
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 <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/openstack.scm')
-rw-r--r--gnu/packages/openstack.scm23
1 files changed, 13 insertions, 10 deletions
diff --git a/gnu/packages/openstack.scm b/gnu/packages/openstack.scm
index 4f8a8504633..c49a7f1157f 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