guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit dcc5765e81e3116c050432704c455a95e87f8316
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sun Jun 14 21:48:31 2026 +0100
gnu: python-gast: Update to 0.7.0.
* gnu/packages/python-xyz.scm (python-gast): Update to 0.7.0.
[source]: Switch to git-fetch.
[native-inputs]: Remove python-wheel.
Change-Id: I494de9fc67634be8378b547137f0301d46cf171a
---
gnu/packages/python-xyz.scm | 14 +++++++++-----
1 file changed, 9 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index b473ab5d12..bde4556f84 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -29024,16 +29024,20 @@ distribution.")
(define-public python-gast
(package
(name "python-gast")
- (version "0.6.0")
+ (version "0.7.0")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "gast" version))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/serge-sans-paille/gast/")
+ (commit version)))
+ (file-name (git-file-name name version))
(sha256
- (base32 "1yxinr3xvxf0cryfrfr9q3rgvrki5y310lsigg5ccyicsc057z48"))))
+ (base32 "05sxx7ixkchxvgrzpkqmklhzvsqydnyzrvzwfd5xkd3cv1arg9m5"))))
(build-system pyproject-build-system)
(native-inputs
- (list python-pytest python-setuptools python-wheel))
+ (list python-pytest
+ python-setuptools))
(home-page "https://github.com/serge-sans-paille/gast/")
(synopsis "Generic Python AST that abstracts the underlying Python
version")
(description