summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-06-14 21:48:31 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-08-08 23:02:05 +0100
commit4fefa0b463a449db841f281118fb1e643b210448 (patch)
treec91f24739700562ef9303a4bebc8d048863f2383 /gnu
parent313fda1006fd194c4349b374f36a657bb6f34708 (diff)
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
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/python-xyz.scm14
1 files changed, 9 insertions, 5 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 174a2186b94..ff37a4075b5 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -29182,16 +29182,20 @@ distribution.")
29182(define-public python-gast 29182(define-public python-gast
29183 (package 29183 (package
29184 (name "python-gast") 29184 (name "python-gast")
29185 (version "0.6.0") 29185 (version "0.7.0")
29186 (source 29186 (source
29187 (origin 29187 (origin
29188 (method url-fetch) 29188 (method git-fetch)
29189 (uri (pypi-uri "gast" version)) 29189 (uri (git-reference
29190 (url "https://github.com/serge-sans-paille/gast/")
29191 (commit version)))
29192 (file-name (git-file-name name version))
29190 (sha256 29193 (sha256
29191 (base32 "1yxinr3xvxf0cryfrfr9q3rgvrki5y310lsigg5ccyicsc057z48")))) 29194 (base32 "05sxx7ixkchxvgrzpkqmklhzvsqydnyzrvzwfd5xkd3cv1arg9m5"))))
29192 (build-system pyproject-build-system) 29195 (build-system pyproject-build-system)
29193 (native-inputs 29196 (native-inputs
29194 (list python-pytest python-setuptools python-wheel)) 29197 (list python-pytest
29198 python-setuptools))
29195 (home-page "https://github.com/serge-sans-paille/gast/") 29199 (home-page "https://github.com/serge-sans-paille/gast/")
29196 (synopsis "Generic Python AST that abstracts the underlying Python version") 29200 (synopsis "Generic Python AST that abstracts the underlying Python version")
29197 (description 29201 (description