diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-31 16:39:37 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-31 17:06:58 +0100 |
commit | 751b8b25a9c70e379f9d82344c824cfc6bc2955f (patch) | |
tree | 097fb48498da4aa5d9e8a9a4b5bdca04afb8bf43 | |
parent | 58a74de03302fb9885d2368f3ec4b8c9f9374dc4 (diff) |
gnu: python-hyperframe: Update to 6.1.0.
* gnu/packages/python-web.scm (python-hyperframe): Update to 6.1.0.
[native-inputs]: Add python-setuptools.
Change-Id: I7cc520ca49131e973632a6f37a0d8ad5fb33cebd
-rw-r--r-- | gnu/packages/python-web.scm | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 5ba508e24d..c0fef04804 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -2844,24 +2844,16 @@ follow links and submit forms. It doesn’t do JavaScript.") (define-public python-hyperframe (package (name "python-hyperframe") - (version "6.0.1") + (version "6.1.0") (source (origin (method url-fetch) (uri (pypi-uri "hyperframe" version)) (sha256 - (base32 "055951gyhnjqpa2al52rj34g8yrls9inyn56n7nfkj0x4d300ldf")))) - (build-system python-build-system) - (arguments - `(#:phases - (modify-phases %standard-phases - (replace 'check - (lambda* (#:key tests? inputs outputs #:allow-other-keys) - (when tests? - (add-installed-pythonpath inputs outputs) - (invoke "pytest" "-vv" "test"))))))) + (base32 "021v58w1b7mbwqkvbz11p3a4qk1sj91jnf6nmgg7ljl502590c7n")))) + (build-system pyproject-build-system) (native-inputs - (list python-pytest)) + (list python-pytest python-setuptools)) (home-page "https://github.com/python-hyper/hyperframe") (synopsis "HTTP/2 framing layer for Python") (description |