diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-03-13 13:01:45 +0000 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2025-04-16 11:46:15 +0200 |
| commit | 907ae7b07d70b0dcc90ba2691a1af4dc2e9dc893 (patch) | |
| tree | a5fdf502a7873f5ea5cac1f1889512f2b7a86494 /gnu/packages | |
| parent | 18e9141d0135697068c3b109c13afbf46864f51c (diff) | |
gnu: python-uvloop: Fix build.
* gnu/packages/python-web.scm (python-uvloop): Fix unquote-splicing
error as seen in <https://ci.guix.gnu.org/build/9605318/log/raw>.
Change-Id: I26bba8d29913e01e037c678d943607a7c00f5647
Diffstat (limited to 'gnu/packages')
| -rw-r--r-- | gnu/packages/python-web.scm | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index e5a1e26004b..d92996aa862 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -7296,9 +7296,9 @@ hard or impossible to fix in cssselect.") "test_process_env_2" ;; socket.gaierror: [Errno -2] Name or service not known "test_getaddrinfo_21" - ,@(if (target-riscv64?) - `("test_renegotiation") - `())) + #$@(if (target-riscv64?) + `("test_renegotiation") + `())) " and not ")) #:phases #~(modify-phases %standard-phases @@ -7310,14 +7310,14 @@ hard or impossible to fix in cssselect.") ;; Replace hardcoded shell command. (substitute* "uvloop/loop.pyx" (("b'/bin/sh'") (string-append "b'" (which "sh") "'"))))) - ,@(if (target-riscv64?) - `((add-after 'unpack 'adjust-test-timeouts - (lambda _ - (substitute* '("tests/test_tcp.py" - "tests/test_unix.py") - (("SSL_HANDSHAKE_TIMEOUT = 15\\.0") - "SSL_HANDSHAKE_TIMEOUT = 30.0"))))) - '()) + #$@(if (target-riscv64?) + `((add-after 'unpack 'adjust-test-timeouts + (lambda _ + (substitute* '("tests/test_tcp.py" + "tests/test_unix.py") + (("SSL_HANDSHAKE_TIMEOUT = 15\\.0") + "SSL_HANDSHAKE_TIMEOUT = 30.0"))))) + '()) (add-before 'check 'pre-check (lambda* (#:key tests? #:allow-other-keys) (when tests? |
