mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-25 20:19:18 -05:00
gnu: Add python-zope-exceptions.
* gnu/packages/python.scm (python-zope-exceptions, python2-zope-exceptions): New variables.
This commit is contained in:
parent
97abe268ab
commit
81f2373cd4
1 changed files with 27 additions and 0 deletions
|
@ -6059,3 +6059,30 @@ (define-public python-zope-interface
|
||||||
|
|
||||||
(define-public python2-zope-interface
|
(define-public python2-zope-interface
|
||||||
(package-with-python2 python-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))
|
||||||
|
|
Loading…
Reference in a new issue