summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-06-11 11:33:25 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-08-08 23:02:02 +0100
commita8a59a3dc6b970ab1f8e776f8031cb4e01275255 (patch)
tree4914669463a2b613af78a7ce1cb6febe15e1c8d7 /gnu/packages
parent65db33833e813c081cf4ac3a2d480d6444c4f881 (diff)
gnu: python-h2: Update to 4.3.0.
* gnu/packages/python-web.scm (python-h2): Update to 4.3.0. [source]: Switch to git-fetch. [native-inputs]: Remove python-wheel. Change-Id: I1dd648b548d961a55ffd5844a0d2d33920a5ecdc
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/python-web.scm15
1 files changed, 9 insertions, 6 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 9af1f0238dd..d35a6e700a2 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -4614,16 +4614,20 @@ and that could be anything you want.")
4614(define-public python-h2 4614(define-public python-h2
4615 (package 4615 (package
4616 (name "python-h2") 4616 (name "python-h2")
4617 (version "4.1.0") 4617 (version "4.3.0")
4618 (source 4618 (source
4619 (origin 4619 (origin
4620 (method url-fetch) 4620 (method git-fetch)
4621 (uri (pypi-uri "h2" version)) 4621 (uri (git-reference
4622 (url "https://github.com/python-hyper/h2")
4623 (commit (string-append "v" version))))
4624 (file-name (git-file-name name version))
4622 (sha256 4625 (sha256
4623 (base32 "1fraip114fm1ha5w37pdc0sk8dn9pb0ck267zrwwpap7zc4clfm8")))) 4626 (base32 "00rf0ii4xgdczx5xmv1k6b65q1axvxizbnl20d5vpr512zdix36k"))))
4624 (build-system pyproject-build-system) 4627 (build-system pyproject-build-system)
4625 (arguments 4628 (arguments
4626 (list 4629 (list
4630 ;; tests: 1594 passed, 5 deselected
4627 ;; AssertionError: assert '<RemoteSettingsChanged 4631 ;; AssertionError: assert '<RemoteSettingsChanged
4628 ;; changed_settings:{ChangedSetting(setting=4, original_value=65536, 4632 ;; changed_settings:{ChangedSetting(setting=4, original_value=65536,
4629 ;; new_value=32768)}>' == '<RemoteSettingsChanged 4633 ;; new_value=32768)}>' == '<RemoteSettingsChanged
@@ -4649,8 +4653,7 @@ and that could be anything you want.")
4649 " and not ")))) 4653 " and not "))))
4650 (native-inputs 4654 (native-inputs
4651 (list python-pytest 4655 (list python-pytest
4652 python-setuptools 4656 python-setuptools))
4653 python-wheel))
4654 (propagated-inputs 4657 (propagated-inputs
4655 (list python-hpack 4658 (list python-hpack
4656 python-hyperframe)) 4659 python-hyperframe))