me
/
guix
Archived
1
0
Fork 0

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.
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
1 changed files with 6 additions and 2 deletions

View File

@ -420,6 +420,10 @@ OpenStack deployment.")
`(#: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 @@ OpenStack deployment.")
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