summaryrefslogtreecommitdiff
path: root/gnu/packages/python-web.scm
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/packages/python-web.scm')
-rw-r--r--gnu/packages/python-web.scm17
1 files changed, 10 insertions, 7 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index a4a2e783b89..9188bc65f98 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -3139,17 +3139,20 @@ stream is an enhanced asynchronous iterable.")
3139 (package 3139 (package
3140 (name "python-asgiref") 3140 (name "python-asgiref")
3141 (version "3.11.1") 3141 (version "3.11.1")
3142 (source (origin 3142 (source
3143 (method url-fetch) 3143 (origin
3144 (uri (pypi-uri "asgiref" version)) 3144 (method git-fetch)
3145 (sha256 3145 (uri (git-reference
3146 (base32 "1km4xlaa21z2h0gz8x84gfgrq8k2mhg48rc0hkz3wxky7g24s62z")))) 3146 (url "https://github.com/django/asgiref/")
3147 (commit version)))
3148 (file-name (git-file-name name version))
3149 (sha256
3150 (base32 "19l03mx81dqhnnqa98073x1q243ndlknax0kva7azr9g12ixl69j"))))
3147 (build-system pyproject-build-system) 3151 (build-system pyproject-build-system)
3148 (native-inputs 3152 (native-inputs
3149 (list python-pytest 3153 (list python-pytest
3150 python-pytest-asyncio 3154 python-pytest-asyncio
3151 python-setuptools 3155 python-setuptools))
3152 python-wheel))
3153 (home-page "https://github.com/django/asgiref/") 3156 (home-page "https://github.com/django/asgiref/")
3154 (synopsis "ASGI specs, helper code, and adapters") 3157 (synopsis "ASGI specs, helper code, and adapters")
3155 (description 3158 (description