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:
parent
1585ff1f33
commit
850d2e8eef
1 changed files with 14 additions and 12 deletions
|
@ -607,35 +607,37 @@ for debugging, and better support for mocking results.")
|
||||||
(define-public python-oslo.utils
|
(define-public python-oslo.utils
|
||||||
(package
|
(package
|
||||||
(name "python-oslo.utils")
|
(name "python-oslo.utils")
|
||||||
(version "3.36.2")
|
(version "4.12.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "oslo.utils" version))
|
(uri (pypi-uri "oslo.utils" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1ipjcgg9z697wmibhcbg5lqpk5gafakdx4qkff3w255zr0mvw04r"))))
|
"0kfgr6lr3r34nzmkvnyywr0x3lkwpwy35m1dj4rkk3ydqvi1xaip"))))
|
||||||
(build-system python-build-system)
|
(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
|
(propagated-inputs
|
||||||
(list python-debtcollector
|
(list python-debtcollector
|
||||||
python-oslo.i18n
|
python-oslo.i18n
|
||||||
python-iso8601
|
python-iso8601
|
||||||
python-monotonic
|
|
||||||
python-netaddr
|
python-netaddr
|
||||||
python-netifaces
|
python-netifaces
|
||||||
|
python-pbr
|
||||||
|
python-packaging-next
|
||||||
python-pyparsing
|
python-pyparsing
|
||||||
python-pytz
|
python-pytz))
|
||||||
python-six))
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list python-pbr
|
;; For tests.
|
||||||
;; Tests.
|
(list python-ddt
|
||||||
python-bandit
|
python-eventlet
|
||||||
python-ddt
|
|
||||||
python-fixtures
|
python-fixtures
|
||||||
python-oslo.config
|
|
||||||
python-oslotest
|
python-oslotest
|
||||||
python-mock
|
python-stestr
|
||||||
python-testrepository
|
|
||||||
python-testscenarios
|
python-testscenarios
|
||||||
python-testtools))
|
python-testtools))
|
||||||
(home-page "https://launchpad.net/oslo")
|
(home-page "https://launchpad.net/oslo")
|
||||||
|
|
Reference in a new issue