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

commit 31bdbacc773b3543c7693c19030abe9ddbb5b8bf
Author: Charles Roelli <[email protected]>
AuthorDate: Wed May 6 09:33:25 2026 +0200

    gnu: python-channels: Update to 4.3.2.
    
    * gnu/packages/django.scm (python-channels): Update to 4.3.2.
    
    Relates-to: guix/guix!8726
    Change-Id: I6f55ea42f2da2f47981aeaf6aa3f3f776f02f80c
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/django.scm | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/django.scm b/gnu/packages/django.scm
index 1c2b957d3a..93513c7116 100644
--- a/gnu/packages/django.scm
+++ b/gnu/packages/django.scm
@@ -106,7 +106,7 @@ prefixing to determine WebSocket endpoints versus HTTP 
endpoints.")
 (define-public python-channels
   (package
     (name "python-channels")
-    (version "4.2.2")
+    (version "4.3.2")
     (source
      (origin
        (method git-fetch) ; no tests in PyPI
@@ -115,8 +115,14 @@ prefixing to determine WebSocket endpoints versus HTTP 
endpoints.")
              (commit version)))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "0x7w29qpj2acrzf8hcgymsyr5gk3aj2wkbvlwcr01ygd6as8h7hz"))))
+        (base32 "0lxq5l0729ms4xzbn1rq968qpi7ipa9aj1wjvzrpdxd3mmlg2618"))))
     (build-system pyproject-build-system)
+    (arguments
+     '(#:phases
+       (modify-phases %standard-phases
+         (add-before 'check 'delete-selenium-tests
+           (lambda* _
+             (delete-file "tests/sample_project/tests/test_selenium.py"))))))
     (propagated-inputs (list python-asgiref python-django))
     ;; Channels develops and maintains Daphne but any other ASGI server can be
     ;; used, so keep it in native-inputs for tests.

Reply via email to