summaryrefslogtreecommitdiff
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
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>
-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.")
694(define-public python-oslo-i18n 694(define-public python-oslo-i18n
695 (package 695 (package
696 (name "python-oslo-i18n") 696 (name "python-oslo-i18n")
697 (version "3.20.0") 697 (version "6.5.1")
698 (source 698 (source
699 (origin 699 (origin
700 (method url-fetch) 700 (method url-fetch)
701 (uri (pypi-uri "oslo.i18n" version)) 701 (uri (pypi-uri "oslo_i18n" version))
702 (sha256 702 (sha256
703 (base32 703 (base32 "178h7grww0brsdcp2iz87giappl928ir82arnvppcz5gqmq6m1ga"))))
704 "0kjcdw4bk3mi4vqmqwhhq053kxbbbj05si6nwxd1pzx33z067ky3")))) 704 (build-system pyproject-build-system)
705 (build-system python-build-system)
706 (arguments
707 '(#:tests? #f)) ;avoid circular dependency on oslo.config
708 (propagated-inputs
709 (list python-babel python-six))
710 (native-inputs 705 (native-inputs
711 (list python-pbr)) 706 (list python-coverage
707 python-debtcollector
708 python-oslo-config
709 python-oslotest
710 python-pbr
711 python-setuptools
712 python-stestr
713 python-testscenarios
714 python-wheel))
712 (home-page "https://launchpad.net/oslo") 715 (home-page "https://launchpad.net/oslo")
713 (synopsis "Oslo internationalization (i18n) library") 716 (synopsis "Oslo internationalization (i18n) library")
714 (description 717 (description