guix-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH 05/23] gnu: Add python-zope-testrunner.


From: Leo Famulari
Subject: [PATCH 05/23] gnu: Add python-zope-testrunner.
Date: Tue, 24 Nov 2015 16:02:05 -0500

* gnu/packages/python.scm (python-zope-testrunner,
  python2-zope-testrunner): New variables.
---
 gnu/packages/python.scm | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 40bcfec..59caeaa 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -6023,3 +6023,34 @@ conforming to a given API or contract.")
 
 (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-subunit" ,python-subunit)
+       ("python-mimeparse" ,python-mimeparse)
+       ("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 script.")
+    (license zpl2.1)))
+
+(define-public python2-zope-testrunner
+  (package-with-python2 python-zope-testrunner))
-- 
2.6.2




reply via email to

[Prev in Thread] Current Thread [Next in Thread]