guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit cc2de728ee9065c816f84cf73bd0fabb53a9ad77
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Thu Jun 11 09:55:46 2026 +0100
gnu: python-asgiref: Build from git.
* gnu/packages/python-web.scm (python-asgiref):
[source]: Switch to git-fetch.
[native-inputs]: Remove python-wheel.
Change-Id: Iadf55e377f46721cce3e182481c33c680a123de8
---
gnu/packages/python-web.scm | 17 ++++++++++-------
1 file changed, 10 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index c7d74c4fa8..aa94302d21 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -3139,17 +3139,20 @@ stream is an enhanced asynchronous iterable.")
(package
(name "python-asgiref")
(version "3.11.1")
- (source (origin
- (method url-fetch)
- (uri (pypi-uri "asgiref" version))
- (sha256
- (base32
"1km4xlaa21z2h0gz8x84gfgrq8k2mhg48rc0hkz3wxky7g24s62z"))))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/django/asgiref/")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "19l03mx81dqhnnqa98073x1q243ndlknax0kva7azr9g12ixl69j"))))
(build-system pyproject-build-system)
(native-inputs
(list python-pytest
python-pytest-asyncio
- python-setuptools
- python-wheel))
+ python-setuptools))
(home-page "https://github.com/django/asgiref/")
(synopsis "ASGI specs, helper code, and adapters")
(description