mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Remove python-typed-ast.
Failing to build not compatible with Python 3.8 onward, see <https://github.com/python/typed_ast/issues/179>. * gnu/packages/python-xyz.scm (python-typed-ast): Delete variable. Change-Id: Id602f14bc985a542ae05cbf138b9c96b89920005
This commit is contained in:
parent
2e91053dca
commit
0b9d5fad44
1 changed files with 0 additions and 36 deletions
|
@ -28878,42 +28878,6 @@ source bytes using the UTF-8 encoding and then rewrites Python 3.6 style
|
|||
@code{f} strings.")
|
||||
(license license:expat)))
|
||||
|
||||
;; TODO: https://github.com/python/typed_ast/issues/179
|
||||
(define-public python-typed-ast
|
||||
(package
|
||||
(name "python-typed-ast")
|
||||
(version "1.5.1")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/python/typed_ast")
|
||||
(commit version)))
|
||||
(sha256
|
||||
(base32 "1xfcs5246c8v5600aaa8zs7ii4sxb62q6r3sb2fgazyjx97wrxd9"))
|
||||
(file-name (git-file-name name version))))
|
||||
(build-system python-build-system)
|
||||
(arguments
|
||||
(list #:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(replace 'check
|
||||
(lambda* (#:key tests? #:allow-other-keys)
|
||||
(when tests?
|
||||
(invoke "pytest" "-vv")))))))
|
||||
(native-inputs (list python-pytest))
|
||||
(home-page "https://github.com/python/typed_ast")
|
||||
(synopsis "Fork of Python @code{ast} modules with type comment support")
|
||||
(description "This package provides a parser similar to the standard
|
||||
@code{ast} library. Unlike @code{ast}, the parsers in @code{typed_ast}
|
||||
include PEP 484 type comments and are independent of the version of Python
|
||||
under which they are run. The @code{typed_ast} parsers produce the standard
|
||||
Python AST (plus type comments), and are both fast and correct, as they are
|
||||
based on the CPython 2.7 and 3.7 parsers.")
|
||||
;; See the file "LICENSE" for the details.
|
||||
(license (list license:psfl
|
||||
license:asl2.0
|
||||
license:expat)))) ;ast27/Parser/spark.py
|
||||
|
||||
(define-public python-typer
|
||||
(package
|
||||
(name "python-typer")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue