[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/23: gnu: Add python-zope-testrunner.
From: |
David Thompson |
Subject: |
05/23: gnu: Add python-zope-testrunner. |
Date: |
Fri, 04 Dec 2015 18:19:48 +0000 |
davexunit pushed a commit to branch wip-lets-encrypt
in repository guix.
commit c3af1af69ffb97481b9cdc29cb52d57b191223e9
Author: Leo Famulari <address@hidden>
Date: Sun Nov 8 22:01:51 2015 -0500
gnu: Add python-zope-testrunner.
* gnu/packages/python.scm (python-zope-testrunner,
python2-zope-testrunner): New variables.
---
gnu/packages/python.scm | 38 ++++++++++++++++++++++++++++++++++++++
1 files changed, 38 insertions(+), 0 deletions(-)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 3dd50ff..a52a450 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -6112,3 +6112,41 @@ forms, HTTP servers, regular expressions, and more.")
(define-public python2-zope-testing
(package-with-python2 python-zope-testing))
+
+(define-public python-zope-testrunner
+ (package
+ (name "python-zope-testrunner")
+ (version "4.4.9")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "https://pypi.python.org/packages/source/z"
+ "/zope.testrunner/zope.testrunner-"
+ version ".zip"))
+ (sha256
+ (base32
+ "1r7iqknhh55y45f64mz5hghgvzx34h1i11k350s0avx6q8gznja1"))))
+ (build-system python-build-system)
+ (native-inputs
+ `(("python-six" ,python-six)
+ ("python-zope-exceptions" ,python-zope-exceptions)
+ ("python-zope-testing" ,python-zope-testing)
+ ("unzip" ,unzip)))
+ (propagated-inputs
+ `(("python-zope-interface" ,python-zope-interface)))
+ (home-page "http://pypi.python.org/pypi/zope.testrunner")
+ (synopsis "Zope testrunner script")
+ (description "Zope.testrunner provides a script for running Python
+tests.")
+ (license zpl2.1)))
+
+;;; python-zope-interface fails to build if python-subunit and
+;;; python-mimeparse are included. So this one really matters.
+(define-public python2-zope-testrunner
+ (let ((base (package-with-python2 python-zope-testrunner)))
+ (package
+ (inherit base)
+ (native-inputs
+ (append (package-native-inputs base)
+ `(("python2-subunit" ,python2-subunit)
+ ("python2-mimeparse" ,python2-mimeparse)))))))
- 01/23: gnu: Add python-zope-event., (continued)
- 01/23: gnu: Add python-zope-event., David Thompson, 2015/12/04
- 02/23: gnu: Add python-zope-interface., David Thompson, 2015/12/04
- 03/23: gnu: Add python-zope-exceptions., David Thompson, 2015/12/04
- 04/23: gnu: Add python-zope-testing., David Thompson, 2015/12/04
- 06/23: gnu: Add python-zope-i18nmessageid., David Thompson, 2015/12/04
- 07/23: gnu: Add python-zope-schema., David Thompson, 2015/12/04
- 08/23: gnu: Add python-zope-configuration., David Thompson, 2015/12/04
- 09/23: gnu: Add python-zope-proxy., David Thompson, 2015/12/04
- 10/23: gnu: Add python-zope-location., David Thompson, 2015/12/04
- 11/23: gnu: Add python-zope-security., David Thompson, 2015/12/04
- 05/23: gnu: Add python-zope-testrunner.,
David Thompson <=
- 12/23: gnu: Add python-zope-component., David Thompson, 2015/12/04
- 16/23: gnu: Add dialog., David Thompson, 2015/12/04
- 15/23: gnu: Add python-configobj., David Thompson, 2015/12/04
- 13/23: gnu: Add python-pyrfc3339., David Thompson, 2015/12/04
- 19/23: gnu: Add python-ndg-httpsclient., David Thompson, 2015/12/04
- 14/23: gnu: Add python-werkzeug., David Thompson, 2015/12/04
- 17/23: gnu: Add python2-pythondialog., David Thompson, 2015/12/04
- 18/23: gnu: Add python-configargparse., David Thompson, 2015/12/04
- 21/23: gnu: Add python2-parsedatetime., David Thompson, 2015/12/04
- 22/23: gnu: Add acme., David Thompson, 2015/12/04