gnu: python-oslo.utils: Update to 4.12.0.

* gnu/packages/openstack.scm (python-oslo.utils): Update to 4.12.0.
[arguments]: Override check phase.
[propagated-inputs]: Remove PYTHON-MONOTONIC and PYTHON-SIX.  Add PYTHON-PBR
and PYTHON-PACKAGING-NEXT.
[native-inputs]: Remove PYTHON-PBR, PYTHON-BANDIT, PYTHON-OSLO.CONFIG,
PYTHON-MOCK and PYTHON-TESTREPOSITORY.  Add PYTHON-STESTR.
This commit is contained in:
Marius Bakke 2022-01-12 19:31:03 +01:00
parent 1585ff1f33
commit 850d2e8eef
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -607,35 +607,37 @@ (define-public python-oslotest
(define-public python-oslo.utils
(package
(name "python-oslo.utils")
(version "3.36.2")
(version "4.12.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "oslo.utils" version))
(sha256
(base32
"1ipjcgg9z697wmibhcbg5lqpk5gafakdx4qkff3w255zr0mvw04r"))))
"0kfgr6lr3r34nzmkvnyywr0x3lkwpwy35m1dj4rkk3ydqvi1xaip"))))
(build-system python-build-system)
(arguments
'(#:phases (modify-phases %standard-phases
(replace 'check
(lambda* (#:key tests? #:allow-other-keys)
(when tests? (invoke "stestr" "run")))))))
(propagated-inputs
(list python-debtcollector
python-oslo.i18n
python-iso8601
python-monotonic
python-netaddr
python-netifaces
python-pbr
python-packaging-next
python-pyparsing
python-pytz
python-six))
python-pytz))
(native-inputs
(list python-pbr
;; Tests.
python-bandit
python-ddt
;; For tests.
(list python-ddt
python-eventlet
python-fixtures
python-oslo.config
python-oslotest
python-mock
python-testrepository
python-stestr
python-testscenarios
python-testtools))
(home-page "https://launchpad.net/oslo")