diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-04-24 22:42:30 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-04-25 12:50:56 +0100 |
commit | 0b9d5fad447eecf09c9f12c0d44014d07973441a (patch) | |
tree | 4e6d4bc23e711a912225c70c414f95a90353e067 | |
parent | 2e91053dca6f278d2d949f565521d610796dfcc6 (diff) | |
download | guix-0b9d5fad447eecf09c9f12c0d44014d07973441a.tar.gz guix-0b9d5fad447eecf09c9f12c0d44014d07973441a.zip |
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
-rw-r--r-- | gnu/packages/python-xyz.scm | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 911cfec2e1..c67421c234 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -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") |