rekado pushed a commit to branch master
in repository guix.

commit ec564c80786b32b0bffeddfa3e36dae14a6a58e9
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Mon Jan 13 11:11:59 2025 +0100

    gnu: python-asgiref: Update to 3.8.1.
    
    * gnu/packages/python-web.scm (python-asgiref): Update to 3.8.1.
    [build-system]: Use pyproject-build-system.
    [arguments]: Remove custom 'check phase.
    [native-inputs]: Add python-setuptools and python-wheel.
    [propagated-inputs]: Remove python-typing-extensions.
    
    Change-Id: Id59954de4540071ba97daca37c463e724f3a3de5
---
 gnu/packages/python-web.scm | 18 +++++-------------
 1 file changed, 5 insertions(+), 13 deletions(-)

diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 9e9f634be3..379aa788f2 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -956,24 +956,16 @@ stream is an enhanced asynchronous iterable.")
 (define-public python-asgiref
   (package
     (name "python-asgiref")
-    (version "3.7.2")
+    (version "3.8.1")
     (source (origin
               (method url-fetch)
               (uri (pypi-uri "asgiref" version))
               (sha256
-               (base32 
"1vdgj8mikd2j6ijlhf7b4n2nxkvq72r1c0hj8mdvl6d8jfmf634y"))))
-    (build-system python-build-system)
-    (arguments
-     '(#:phases
-       (modify-phases %standard-phases
-         (replace 'check
-           (lambda* (#:key tests? #:allow-other-keys)
-             (when tests?
-               (invoke "pytest" "-vv")))))))
+               (base32 
"146mhkn3zp2bqf7j6r3chdlvfzgs5x1lrnqahsllgjdyl20bshy3"))))
+    (build-system pyproject-build-system)
     (native-inputs
-     (list python-mypy python-pytest python-pytest-asyncio))
-    (propagated-inputs
-     (list python-typing-extensions))
+     (list python-mypy python-pytest python-pytest-asyncio python-setuptools
+           python-wheel))
     (home-page "https://github.com/django/asgiref/";)
     (synopsis "ASGI specs, helper code, and adapters")
     (description

Reply via email to