[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/23: gnu: Add python-zope-exceptions.
From: |
David Thompson |
Subject: |
03/23: gnu: Add python-zope-exceptions. |
Date: |
Fri, 04 Dec 2015 18:19:48 +0000 |
davexunit pushed a commit to branch wip-lets-encrypt
in repository guix.
commit 7d3f01906eefdd0b80306035395ba3d68aa92e36
Author: Leo Famulari <address@hidden>
Date: Sun Nov 8 22:00:40 2015 -0500
gnu: Add python-zope-exceptions.
* gnu/packages/python.scm (python-zope-exceptions,
python2-zope-exceptions): New variables.
---
gnu/packages/python.scm | 27 +++++++++++++++++++++++++++
1 files changed, 27 insertions(+), 0 deletions(-)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index fbefd95..0aabe08 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -6059,3 +6059,30 @@ conforming to a given API or contract.")
(define-public python2-zope-interface
(package-with-python2 python-zope-interface))
+
+(define-public python-zope-exceptions
+ (package
+ (name "python-zope-exceptions")
+ (version "4.0.8")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "https://pypi.python.org/packages/source/z"
+ "/zope.exceptions/zope.exceptions-"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "0zwxaaa66sqxg5k7zcrvs0fbg9ym1njnxnr28dfmchzhwjvwnfzl"))))
+ (build-system python-build-system)
+ (arguments
+ '(#:tests? #f)) ; circular dependency with zope.testrunner
+ (propagated-inputs
+ `(("python-zope-interface" ,python-zope-interface)))
+ (home-page "http://cheeseshop.python.org/pypi/zope.exceptions")
+ (synopsis "Zope exceptions")
+ (description "Zope.exceptions provides general-purpose exception types
+that have uses outside of the Zope framework.")
+ (license zpl2.1)))
+
+(define-public python2-zope-exceptions
+ (package-with-python2 python-zope-exceptions))
- branch wip-lets-encrypt created (now fdd7a84), David Thompson, 2015/12/04
- 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 <=
- 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, 2015/12/04
- 12/23: gnu: Add python-zope-component., David Thompson, 2015/12/04
- 16/23: gnu: Add dialog., David Thompson, 2015/12/04