diff options
Diffstat (limited to 'gnu/packages/openstack.scm')
-rw-r--r-- | gnu/packages/openstack.scm | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/gnu/packages/openstack.scm b/gnu/packages/openstack.scm index 381480b786..8130097c83 100644 --- a/gnu/packages/openstack.scm +++ b/gnu/packages/openstack.scm @@ -662,10 +662,16 @@ from the OpenStack project.") (description "The Oslo Test framework provides common fixtures, support for debugging, and better support for mocking results.") + (properties `((python2-variant . ,(delay python2-oslotest)))) (license asl2.0))) (define-public python2-oslotest - (package-with-python2 python-oslotest)) + (package (inherit (package-with-python2 + (strip-python2-variant python-oslotest))) + (arguments + `(#:python ,python-2 + ;; FIXME: 'subunit.run discover: error: no such option: --list' + #:tests? #f)))) (define-public python-oslo.utils (package |