diff options
author | Peter Polidoro <peter@polidoro.io> | 2022-06-07 16:26:06 -0400 |
---|---|---|
committer | Guix Patches Tester <> | 2022-06-07 21:28:36 +0100 |
commit | 4353e207d02e4ceab927684e7f1871bb47fbe809 (patch) | |
tree | 4bd99f0c0a916de73cda08abf650ad5f2a307758 | |
parent | b42ed3b77c4ff3234f62d6450687991b9772b7e7 (diff) | |
download | guix-patches-4353e207d02e4ceab927684e7f1871bb47fbe809.tar guix-patches-4353e207d02e4ceab927684e7f1871bb47fbe809.tar.gz |
gnu: python-sanic-testing: Update requirements.series-12597
* gnu/packages/python-web.scm (): Update to .
-rw-r--r-- | gnu/packages/python-web.scm | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 06a0d2593b..55eff717ad 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -6325,7 +6325,13 @@ the @code{BasicRouter}.") (arguments ;; PyPi sources does not contain tests, recursive dependency on ;; python-sanic. - (list #:tests? #f)) + '(#:tests? #f + #:phases + (modify-phases %standard-phases + (add-after 'unpack 'patch-requirements + (lambda _ + (substitute* "setup.py" + (("httpx>=0\\.18,<0\\.23") "httpx"))))))) (propagated-inputs (list python-httpx python-sanic-bootstrap python-websockets)) (home-page "https://github.com/sanic-org/sanic-testing/") |