diff options
author | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2022-07-20 08:20:34 +0200 |
---|---|---|
committer | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2022-08-10 09:39:00 +0200 |
commit | 104f9e05754e3453413534bc2c31a60281ebde9f (patch) | |
tree | 7ea18811a321d36503c980fe86b6a2bf5eac0947 /gnu/packages | |
parent | 52359f01bb92e254de3a83078d2a0908b083aab6 (diff) | |
download | guix-104f9e05754e3453413534bc2c31a60281ebde9f.tar.gz guix-104f9e05754e3453413534bc2c31a60281ebde9f.zip |
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.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/openstack.scm | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/gnu/packages/openstack.scm b/gnu/packages/openstack.scm index 12c128d706..844f535286 100644 --- a/gnu/packages/openstack.scm +++ b/gnu/packages/openstack.scm @@ -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 |