gnu: python-tempest-lib: Update to 1.0.0.

* gnu/packages/openstack.scm (python-tempest-lib): Update to 1.0.0.
  [arguments]<phases>{relax-requirements}: New phase.
  [propagated-inputs]: Remove python-pbr.
  [native-inouts]: Add python-pbr.
This commit is contained in:
Hartmut Goebel 2022-07-20 08:20:34 +02:00
parent 52359f01bb
commit 104f9e0575
No known key found for this signature in database
GPG key ID: 634A8DFFD3F631DF

View file

@ -420,6 +420,10 @@ (define-public python-tempest-lib
`(#:tests? #f ; FIXME: Requires oslo.log >= 1.14.0.
#:phases
(modify-phases %standard-phases
(add-after 'unpack 'relax-requirements
(lambda _
(substitute* "requirements.txt"
(("jsonschema[<>!=].*") "jsonschema\n"))))
(add-before
'check 'pre-check
(lambda _
@ -432,10 +436,10 @@ (define-public python-tempest-lib
python-jsonschema
python-oslo.log
python-paramiko
python-pbr
python-six))
(native-inputs
(list python-babel python-mock python-os-testr python-oslotest))
(list python-babel python-mock python-os-testr python-oslotest
python-pbr))
(home-page "https://www.openstack.org/")
(synopsis "OpenStack functional testing library")
(description