diff options
author | Marius Bakke <mbakke@fastmail.com> | 2018-02-27 23:46:33 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2018-02-28 13:59:00 +0100 |
commit | 79d9effa51cd8a68cc0afbf3a9c2bfb4bddbeb64 (patch) | |
tree | be95af5b09ae370b9b7e03f11ec00362c9ddd0e5 | |
parent | 8fa28808a6d26200e915a3f0f32c63e85f70f7b9 (diff) | |
download | patches-79d9effa51cd8a68cc0afbf3a9c2bfb4bddbeb64.tar patches-79d9effa51cd8a68cc0afbf3a9c2bfb4bddbeb64.tar.gz |
gnu: python2-stevedore: Enable tests.
* gnu/packages/openstack.scm (python-stevedore)[properties]: Remove.
(python2-stevedore)[arguments]: Remove.
-rw-r--r-- | gnu/packages/openstack.scm | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/gnu/packages/openstack.scm b/gnu/packages/openstack.scm index ce32e108ef..461006fc7b 100644 --- a/gnu/packages/openstack.scm +++ b/gnu/packages/openstack.scm @@ -315,16 +315,10 @@ mechanism by building on top of setuptools entry points. The code for managing entry points tends to be repetitive, though, so stevedore provides manager classes for implementing common patterns for using dynamically loaded extensions.") - (properties `((python2-variant . ,(delay python2-stevedore)))) (license asl2.0))) (define-public python2-stevedore - (package (inherit (package-with-python2 - (strip-python2-variant python-stevedore))) - (arguments - `(#:python ,python-2 - ;; FIXME: 'subunit.run discover: error: no such option: --list' - #:tests? #f)))) + (package-with-python2 python-stevedore)) (define-public python-tempest-lib (package |