guix_mirror_bot pushed a commit to branch python-team
in repository guix.

commit 3c81cd1d0893a78baaa5f5f2a44cbdba901d5318
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Thu Jun 11 11:33:25 2026 +0100

    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
---
 gnu/packages/python-web.scm | 15 +++++++++------
 1 file changed, 9 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 99d2eea69b..f970dc82d7 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -4555,16 +4555,20 @@ and that could be anything you want.")
 (define-public python-h2
   (package
     (name "python-h2")
-    (version "4.1.0")
+    (version "4.3.0")
     (source
      (origin
-       (method url-fetch)
-       (uri (pypi-uri "h2" version))
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/python-hyper/h2";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
        (sha256
-        (base32 "1fraip114fm1ha5w37pdc0sk8dn9pb0ck267zrwwpap7zc4clfm8"))))
+        (base32 "00rf0ii4xgdczx5xmv1k6b65q1axvxizbnl20d5vpr512zdix36k"))))
     (build-system pyproject-build-system)
     (arguments
      (list
+      ;; tests: 1594 passed, 5 deselected
       ;; AssertionError: assert '<RemoteSettingsChanged
       ;; changed_settings:{ChangedSetting(setting=4, original_value=65536,
       ;; new_value=32768)}>' == '<RemoteSettingsChanged
@@ -4590,8 +4594,7 @@ and that could be anything you want.")
                " and not "))))
     (native-inputs
      (list python-pytest
-           python-setuptools
-           python-wheel))
+           python-setuptools))
     (propagated-inputs
      (list python-hpack
            python-hyperframe))

Reply via email to