~ruther/guix-local

378efac5d099d00700bb3f40a243ab4f9687e60a — Nicolas Graves 9 months ago 2b6ba23
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>
1 files changed, 13 insertions(+), 10 deletions(-)

M gnu/packages/openstack.scm
M gnu/packages/openstack.scm => gnu/packages/openstack.scm +13 -10
@@ 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