guix_mirror_bot pushed a commit to branch python-team
in repository guix.

commit 6df9353847563121166290414a1b9f5878c2aaaa
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sat May 30 00:39:56 2026 +0100

    gnu: python-asttokens: Update to 3.0.1.
    
    * gnu/packages/python-xyz.scm (python-asttokens): Update to 3.0.1.
    [source]: Switch to git-fetch.
    [native-inputs]: Remove python-wheel.
    
    Change-Id: I339ee2699aa62b8ee5a5da418032aaa299573991
---
 gnu/packages/python-xyz.scm | 15 ++++++++-------
 1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index d7b5cce0a9..e9e923916d 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -16041,20 +16041,21 @@ to Python code.")
 (define-public python-asttokens
   (package
     (name "python-asttokens")
-    (version "3.0.0")
+    (version "3.0.1")
     (source
      (origin
-       (method url-fetch)
-       (uri (pypi-uri "asttokens" version))
-       (sha256
-        (base32 "1ixv6n8cg08n9h6rwyhd3lkzyjiwpbfv56dk338w3c32inm8pk8d"))))
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/gristlabs/asttokens";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256 (base32 
"1qqi7dygcv58czrsafc4gf41prfb6shd0crx33kd9wypk0v29afn"))))
     (build-system pyproject-build-system)
     (native-inputs
      (list python-astroid
            python-pytest
            python-setuptools
-           python-setuptools-scm
-           python-wheel))
+           python-setuptools-scm))
     (home-page "https://github.com/gristlabs/asttokens";)
     (synopsis "Python library to annotate abstract syntax trees")
     (description "The @code{asttokens} module annotates Python abstract syntax

Reply via email to