gnu: python-zope-testrunner: Update to 5.1.
* gnu/packages/python-web.scm (python-zope-testrunner): Update to 5.1. [source](uri): Download tarball instead of zipball. [native-inputs]: Remove UNZIP. Move PYTHON-ZOPE-INTERFACE and PYTHON-ZOPE-EXCEPTIONS ... [propagated-inputs]: ... here.
parent
16839ec340
commit
ddacd13d56
|
@ -1063,25 +1063,23 @@ forms, HTTP servers, regular expressions, and more.")
|
||||||
(define-public python-zope-testrunner
|
(define-public python-zope-testrunner
|
||||||
(package
|
(package
|
||||||
(name "python-zope-testrunner")
|
(name "python-zope-testrunner")
|
||||||
(version "4.4.9")
|
(version "5.1")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "zope.testrunner" version ".zip"))
|
(uri (pypi-uri "zope.testrunner" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1r7iqknhh55y45f64mz5hghgvzx34h1i11k350s0avx6q8gznja1"))))
|
"0w3q66cy4crpj7c0hw0vvvvwf3g931rnvw7wwa20av7yqvv6ajim"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:tests? #f)) ; FIXME: Tests can't find zope.interface.
|
'(#:tests? #f)) ; FIXME: Tests can't find zope.interface.
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("python-six" ,python-six)
|
`(("python-zope-testing" ,python-zope-testing)))
|
||||||
;("python-zope-interface" ,python-zope-interface)
|
|
||||||
("python-zope-exceptions" ,python-zope-exceptions)
|
|
||||||
("python-zope-testing" ,python-zope-testing)
|
|
||||||
("unzip" ,unzip)))
|
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("python-zope-interface" ,python-zope-interface)))
|
`(("python-six" ,python-six)
|
||||||
|
("python-zope-exceptions" ,python-zope-exceptions)
|
||||||
|
("python-zope-interface" ,python-zope-interface)))
|
||||||
(home-page "https://pypi.org/project/zope.testrunner/")
|
(home-page "https://pypi.org/project/zope.testrunner/")
|
||||||
(synopsis "Zope testrunner script")
|
(synopsis "Zope testrunner script")
|
||||||
(description "Zope.testrunner provides a script for running Python
|
(description "Zope.testrunner provides a script for running Python
|
||||||
|
@ -1089,13 +1087,7 @@ tests.")
|
||||||
(license license:zpl2.1)))
|
(license license:zpl2.1)))
|
||||||
|
|
||||||
(define-public python2-zope-testrunner
|
(define-public python2-zope-testrunner
|
||||||
(let ((base (package-with-python2 python-zope-testrunner)))
|
(package-with-python2 python-zope-testrunner))
|
||||||
(package
|
|
||||||
(inherit base)
|
|
||||||
(native-inputs
|
|
||||||
(append (package-native-inputs base)
|
|
||||||
`(("python2-subunit" ,python2-subunit)
|
|
||||||
("python2-mimeparse" ,python2-mimeparse)))))))
|
|
||||||
|
|
||||||
(define-public python-zope-i18nmessageid
|
(define-public python-zope-i18nmessageid
|
||||||
(package
|
(package
|
||||||
|
|
Reference in New Issue