diff options
author | Marius Bakke <mbakke@fastmail.com> | 2017-02-24 21:30:22 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2017-02-24 21:37:03 +0100 |
commit | d6caebc4d63ac8e7ae5e82b1261557e1b6898c10 (patch) | |
tree | 17d53bbb8c186b0b8e77cb0aba3131d2e8984d9d | |
parent | e1f2e190471ae87bc51f8e9539f4bfbe9f69caa0 (diff) | |
download | guix-d6caebc4d63ac8e7ae5e82b1261557e1b6898c10.tar guix-d6caebc4d63ac8e7ae5e82b1261557e1b6898c10.tar.gz |
gnu: python2-reno: Disable tests.
* gnu/packages/openstack.scm (python2-reno)[arguments]: New field.
(python-reno)[properties]: Delay it.
-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 cdd37815de..51566b65e3 100644 --- a/gnu/packages/openstack.scm +++ b/gnu/packages/openstack.scm @@ -605,10 +605,16 @@ in transmittable and storable formats, such as JSON and MessagePack.") (synopsis "Release notes manager") (description "Reno is a tool for storing release notes in a git repository and building documentation from them.") + (properties `((python2-variant . ,(delay python2-reno)))) (license asl2.0))) (define-public python2-reno - (package-with-python2 python-reno)) + (package (inherit (package-with-python2 + (strip-python2-variant python-reno))) + (arguments + `(#:python ,python-2 + ;; FIXME: 'subunit.run discover: error: no such option: --list' + #:tests? #f)))) (define-public python-oslosphinx (package |