diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-12-21 14:50:25 -0500 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-01-10 11:44:44 -0500 |
commit | 0be48040dc30a07ee810d28d3c4011530910c502 (patch) | |
tree | 4c21ba512c39e8f9eab10f7eb185a760a44e4fe0 /gnu/packages/openstack.scm | |
parent | 7aa7d85bac2b4e1e94e0a4b3682f94f275e31c75 (diff) | |
download | guix-0be48040dc30a07ee810d28d3c4011530910c502.tar.gz |
gnu: python-os-testr: Propagate python-testtools and python-babel.
Lack of python-testtools was causing the sanity-check phase to fail. * gnu/packages/openstack.scm (python-os-testr) [native-inputs]{python-testtools, python-babel}: Move to... [propagated-inputs]: ... here.
Diffstat (limited to 'gnu/packages/openstack.scm')
-rw-r--r-- | gnu/packages/openstack.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/openstack.scm b/gnu/packages/openstack.scm index b0395fd7d0..fbf8f42334 100644 --- a/gnu/packages/openstack.scm +++ b/gnu/packages/openstack.scm @@ -268,9 +268,9 @@ to docs.openstack.org and developer.openstack.org.") ;; when building the package. Skip the tests for now. `(#:tests? #f)) (propagated-inputs - (list python-subunit)) + (list python-babel python-subunit python-testrepository python-testtools)) (native-inputs - (list python-pbr python-testtools python-babel)) + (list python-pbr)) (home-page "https://www.openstack.org/") (synopsis "Testr wrapper to provide functionality for OpenStack projects") (description |