diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2025-07-23 18:34:04 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-27 00:25:39 +0100 |
commit | b960746197c3edd09837353adcd7d6a1e921287e (patch) | |
tree | a14d46b51c13f82ab110284c04730d6db75d6805 /gnu/packages/python-web.scm | |
parent | 60b8b302d6d20273503d2544e41f93bb2faab45f (diff) |
gnu: python-eventlet: Set EVENTLET_NO_GREENDNS=yes by default.
This error propagates and pollutes user experience in Guix. Until
someone tackles how to actually fix it, if it's even fixable in Guix,
change the hardcoded default.
* gnu/packages/python-web.scm (python-eventlet):
[arguments]<#:phases>: Set EVENTLET_NO_GREENDNS=yes by default in
phase 'avoid-OSError.
[description]: Update the description to warn about the changed
default.
(python-httpretty)[arguments]: Remove uneeded field.
* gnu/packages/python-xyz.scm (python-pydevd)[arguments]<#:phases>:
Unset the variable in phase 'pre-check.
* gnu/packages/tor.scm (onionshare, onionshare-cli)[arguments]
<#:phases>: Unset the variable in phase 'pre-check.
Change-Id: Ic3897a9e0006338c3bc8b4bcddab0948e76a5d87
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-web.scm')
-rw-r--r-- | gnu/packages/python-web.scm | 31 |
1 files changed, 17 insertions, 14 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 7558a108fa..5f2beb729e 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -623,13 +623,17 @@ Dropbox API v2.") " and not test_patcher_existing_locks" " and not test_dns_methods_are_green")) #:phases - '(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")))))) + #~(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. Note that + ;; this error is propagated to child packages too, so enforce the + ;; changed default. + (substitute* "eventlet/green/socket.py" + (("os\\.environ\\.get\\(\"EVENTLET_NO_GREENDNS\", ''\\)") + "os.environ.get(\"EVENTLET_NO_GREENDNS\", \"yes\")"))))))) (native-inputs (list python-hatch-vcs python-hatchling @@ -648,7 +652,11 @@ It uses @code{epoll} or @code{libevent} for highly scalable non-blocking I/O. Coroutines ensure that the developer uses a blocking style of programming that is similar to threading, but provide the benefits of non-blocking I/O. The event dispatch is implicit, which means you can easily use @code{Eventlet} -from the Python interpreter, or as a small part of a larger application.") +from the Python interpreter, or as a small part of a larger application. + +Note: In Guix, this package assumes the environment variable +@code{EVENTLET_NO_GREENDNS} defaults to @code{yes}. To try to use it, set it +to anything else.") (license license:expat))) (define-public python-globus-sdk @@ -781,12 +789,7 @@ of a fake DNS resolver.") "test_request_parse_querystring" "test_request_string_representation" "test_request_stubs_internals") - " and not ")) - #:phases - #~(modify-phases %standard-phases - (add-before 'check 'pre-check - (lambda _ - (setenv"EVENTLET_NO_GREENDNS" "yes")))))) + " and not ")))) (native-inputs (list nss-certs-for-test python-freezegun |