apteryx pushed a commit to branch version-1.4.0
in repository guix.
commit e9a5d33c60b195477c35c5a6bf151e4db3f05c09
Author: Maxim Cournoyer <[email protected]>
AuthorDate: Tue Dec 21 14:50:25 2021 -0500
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.
---
gnu/packages/openstack.scm | 4 ++--
1 file 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