guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

49/213: gnu: python-gast: Update to 0.6.0.


From: guix-commits
Subject: 49/213: gnu: python-gast: Update to 0.6.0.
Date: Fri, 10 Jan 2025 10:42:52 -0500 (EST)

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

commit 0858f709f0997faa699afedf53ffc1183d5ce8c5
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Tue Dec 17 23:01:23 2024 +0100

    gnu: python-gast: Update to 0.6.0.
    
    * gnu/packages/python-xyz.scm (python-gast): Update to 0.6.0.
    [build-system]: Use pyproject-build-system.
    [arguments]: Remove custom 'check phase.
    [native-inputs]: Add python-setuptools and python-wheel.
    [propagated-inputs]: Remove.
    
    Change-Id: I3cc17b2c5434e637435f76482e0dcaf54c75c0dd
---
 gnu/packages/python-xyz.scm | 16 ++++------------
 1 file changed, 4 insertions(+), 12 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 05fa2acd81..6a9208c290 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -30284,24 +30284,16 @@ distribution.")
 (define-public python-gast
   (package
     (name "python-gast")
-    (version "0.5.3")
+    (version "0.6.0")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "gast" version))
        (sha256
-        (base32 "1sidaczriw54pfkj3523y9j9q2harrczc1qqgnfaylz641ca5gng"))))
-    (build-system python-build-system)
-    (arguments
-     '(#:phases (modify-phases %standard-phases
-                  (replace 'check
-                    (lambda* (#:key tests? #:allow-other-keys)
-                      (when tests?
-                        (invoke "pytest" "-vv")))))))
+        (base32 "1yxinr3xvxf0cryfrfr9q3rgvrki5y310lsigg5ccyicsc057z48"))))
+    (build-system pyproject-build-system)
     (native-inputs
-     (list python-pytest))
-    (propagated-inputs
-     (list python-astunparse))
+     (list python-pytest python-setuptools python-wheel))
     (home-page "https://github.com/serge-sans-paille/gast/";)
     (synopsis "Generic Python AST that abstracts the underlying Python 
version")
     (description



reply via email to

[Prev in Thread] Current Thread [Next in Thread]