gnu: python-eventlet: Update to 0.33.0.
* gnu/packages/python-xyz.scm (python-eventlet): Update to 0.33.0. [propagated-inputs]: Add python-six. [native-inputs]: Add python-nose. [arguments]: Enable tests; add build phases 'avoid-OSError and 'delete-broken-tests; replace the 'check phase to run nosetests.master
parent
5d151c27b3
commit
872116ebc6
|
@ -2424,22 +2424,40 @@ standard.")
|
||||||
(define-public python-eventlet
|
(define-public python-eventlet
|
||||||
(package
|
(package
|
||||||
(name "python-eventlet")
|
(name "python-eventlet")
|
||||||
(version "0.25.1")
|
(version "0.33.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "eventlet" version))
|
(uri (pypi-uri "eventlet" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1hgz8jq19wlz8vwqj900ry8cjv578nz4scc91mlc8944yid6573c"))))
|
"07qlyhcm0f28sxdizawvdf3d50m3hnbzz5kg3fjp7chvki44y540"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("python-dnspython" ,python-dnspython)
|
`(("python-dnspython" ,python-dnspython)
|
||||||
("python-greenlet" ,python-greenlet)
|
("python-greenlet" ,python-greenlet)
|
||||||
("python-monotonic" ,python-monotonic)))
|
("python-monotonic" ,python-monotonic)
|
||||||
|
("python-six" ,python-six)))
|
||||||
|
(native-inputs
|
||||||
|
`(("python-nose" ,python-nose)))
|
||||||
(arguments
|
(arguments
|
||||||
;; TODO: Requires unpackaged 'enum-compat'.
|
'(#:phases
|
||||||
'(#:tests? #f))
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'avoid-OSError
|
||||||
|
(lambda _
|
||||||
|
;; If eventlet tries to load greendns, an OSError is thrown when
|
||||||
|
;; getprotobyname is called. Thankfully there is an environment
|
||||||
|
;; variable to disable the greendns import, so use it:
|
||||||
|
(setenv "EVENTLET_NO_GREENDNS" "yes")))
|
||||||
|
(add-after 'unpack 'delete-broken-tests
|
||||||
|
(lambda _
|
||||||
|
(delete-file "tests/greendns_test.py")
|
||||||
|
(delete-file "tests/socket_test.py")))
|
||||||
|
;; See https://github.com/eventlet/eventlet/issues/562#issuecomment-714183009
|
||||||
|
(replace 'check
|
||||||
|
(lambda* (#:key tests? #:allow-other-keys)
|
||||||
|
(when tests?
|
||||||
|
(invoke "nosetests" "-v" "tests/")))))))
|
||||||
(home-page "https://eventlet.net")
|
(home-page "https://eventlet.net")
|
||||||
(synopsis "Concurrent networking library for Python")
|
(synopsis "Concurrent networking library for Python")
|
||||||
(description
|
(description
|
||||||
|
|
Reference in New Issue