mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-astunparse: Switch to pyproject-build-system.
* gnu/packages/python-xyz.scm (python-astunparse): [build-system]: Use pyproject. [propagated-inputs]: Remove python-wheel. [native-inputs]: Add python-setuptools. Change-Id: I47ca10fc70a1db146f405247940904f2a5df30fe
This commit is contained in:
parent
8455dd5ef4
commit
7beb326dff
1 changed files with 6 additions and 2 deletions
|
@ -30867,6 +30867,8 @@ source via the Abstract Syntax Tree.")
|
|||
(license license:bsd-3)))
|
||||
|
||||
(define-public python-astunparse
|
||||
;; XXX: No updates since 2019, consider to remove when python-pytorch is
|
||||
;; updated.
|
||||
(package
|
||||
(name "python-astunparse")
|
||||
(version "1.6.3")
|
||||
|
@ -30876,10 +30878,12 @@ source via the Abstract Syntax Tree.")
|
|||
(uri (pypi-uri "astunparse" version))
|
||||
(sha256
|
||||
(base32 "0wh8jjvwafxc7rvbyb13cdwndkicm7cry1bd8p1q9l7has23mnas"))))
|
||||
(build-system python-build-system)
|
||||
(build-system pyproject-build-system)
|
||||
(arguments '(#:tests? #f)) ; there are none
|
||||
(native-inputs
|
||||
(list python-setuptools))
|
||||
(propagated-inputs
|
||||
(list python-six python-wheel))
|
||||
(list python-six))
|
||||
(home-page "https://github.com/simonpercivall/astunparse")
|
||||
(synopsis "AST unparser for Python")
|
||||
(description "This package provides an AST unparser for Python. It is a
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue