gnu: python-webtest: Update to 2.0.33.
* gnu/packages/python-web.scm (python-webtest, python2-webtest): Update to 2.0.33. Remove outdated comments.
This commit is contained in:
parent
c381d4bb15
commit
0596a7af5f
|
@ -1566,34 +1566,18 @@ file.")
|
||||||
(define-public python-webtest
|
(define-public python-webtest
|
||||||
(package
|
(package
|
||||||
(name "python-webtest")
|
(name "python-webtest")
|
||||||
(version "2.0.30")
|
(version "2.0.33")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "WebTest" version))
|
(uri (pypi-uri "WebTest" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1mb7m4ndklv84mh0pdkhv73yrflcnra61yczj5g3bvwbqlygfsaw"))))
|
"1l3z0cwqslsf4rcrhi2gr8kdfh74wn2dw76376i4g9i38gz8wd21"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(;; Unfortunately we have to disable tests!
|
;; Tests require python-pyquery, which creates a circular dependency.
|
||||||
;; This release of WebTest is pinned to python-nose < 1.3,
|
`(#:tests? #f))
|
||||||
;; but older versions of python-nose are plagued with the following
|
|
||||||
;; bug(s), which rears its ugly head during test execution:
|
|
||||||
;; https://github.com/nose-devs/nose/issues/759
|
|
||||||
;; https://github.com/nose-devs/nose/pull/811
|
|
||||||
#:tests? #f))
|
|
||||||
;; Commented out code is no good, but in this case, once tests
|
|
||||||
;; are ready to be enabled again, we should put the following
|
|
||||||
;; in place:
|
|
||||||
;; (native-inputs
|
|
||||||
;; `(("python-nose" ,python-nose) ; technially < 1.3,
|
|
||||||
;; ; but see above comment
|
|
||||||
;; ("python-coverage" ,python-coverage)
|
|
||||||
;; ("python-mock" ,python-mock)
|
|
||||||
;; ("python-pastedeploy" ,python-pastedeploy)
|
|
||||||
;; ("python-wsgiproxy2" ,python-wsgiproxy2)
|
|
||||||
;; ("python-pyquery" ,python-pyquery)))
|
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("python-waitress" ,python-waitress)
|
`(("python-waitress" ,python-waitress)
|
||||||
("python-webob" ,python-webob)
|
("python-webob" ,python-webob)
|
||||||
|
|
Loading…
Reference in New Issue