summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-07-31 16:59:17 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-07-31 17:06:58 +0100
commit4731e3d941659e058311960bcf79c2ccc66a5342 (patch)
tree731b01db8cf77366a858d4a2a2127cd9f42b5b03
parent751b8b25a9c70e379f9d82344c824cfc6bc2955f (diff)
gnu: python-hpack: Update to 4.1.0.
* gnu/packages/python-web.scm (python-hpack): Update to 4.1.0. [native-inputs]: Add python-setuptools. Change-Id: I7a99bea38de197cbe98750cf6910b0f70d286cce
-rw-r--r--gnu/packages/python-web.scm16
1 files changed, 4 insertions, 12 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index c0fef04804..227dc7c2ef 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -2865,7 +2865,7 @@ into HTTP/2 frames.")
(define-public python-hpack
(package
(name "python-hpack")
- (version "4.0.0")
+ (version "4.1.0")
(source
(origin
;; PyPI tarball is missing some files necessary for the tests.
@@ -2875,18 +2875,10 @@ into HTTP/2 frames.")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "11qdayvz5a8zlzdcdm37f2z1fgnl67pz6j8xj2dz5rfa5lds29yq"))))
- (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 "1kgbx38p3a48iz914dqbx7av750a3s3x5kj3rvpcbh23ah75zg5x"))))
+ (build-system pyproject-build-system)
(native-inputs
- (list python-pytest))
+ (list python-pytest python-setuptools))
(home-page "https://hyper.rtfd.org")
(synopsis "Pure-Python HPACK header compression")
(description