mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add python-zope-testing.
* gnu/packages/python.scm (python-zope-testing, python2-zope-testing): New variables.
This commit is contained in:
parent
81f2373cd4
commit
900e3c0e0e
1 changed files with 26 additions and 0 deletions
|
@ -6086,3 +6086,29 @@ (define-public python-zope-exceptions
|
|||
|
||||
(define-public python2-zope-exceptions
|
||||
(package-with-python2 python-zope-exceptions))
|
||||
|
||||
(define-public python-zope-testing
|
||||
(package
|
||||
(name "python-zope-testing")
|
||||
(version "4.5.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://pypi.python.org/packages/source/z"
|
||||
"/zope.testing/zope.testing-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1yvglxhzvhl45mndvn9gskx2ph30zz1bz7rrlyfs62fv2pvih90s"))))
|
||||
(build-system python-build-system)
|
||||
(native-inputs
|
||||
`(("python-zope-exceptions" ,python-zope-exceptions)))
|
||||
(propagated-inputs
|
||||
`(("python-zope-interface" ,python-zope-interface)))
|
||||
(home-page "http://pypi.python.org/pypi/zope.testing")
|
||||
(synopsis "Zope testing helpers")
|
||||
(description "Zope.testing provides a number of testing utilities for HTML
|
||||
forms, HTTP servers, regular expressions, and more.")
|
||||
(license zpl2.1)))
|
||||
|
||||
(define-public python2-zope-testing
|
||||
(package-with-python2 python-zope-testing))
|
||||
|
|
Loading…
Reference in a new issue