mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add python-astor.
* gnu/packages/python-xyz.scm (python-astor): New variable.
This commit is contained in:
parent
d0446c4b55
commit
81bed4e92b
1 changed files with 20 additions and 0 deletions
|
@ -14693,6 +14693,26 @@ (define-public python-absl-py
|
|||
of Python libraries for building Python applications.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public python-astor
|
||||
(package
|
||||
(name "python-astor")
|
||||
(version "0.7.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "astor" version))
|
||||
(sha256
|
||||
(base32
|
||||
"13gv6f2xz9i564byp21gcpc0l3w4cs23k1wbcam8kky2ls3hvhwm"))))
|
||||
(build-system python-build-system)
|
||||
;; FIXME: There are two errors and two test failures.
|
||||
(arguments `(#:tests? #f))
|
||||
(home-page "https://github.com/berkerpeksag/astor")
|
||||
(synopsis "Read/rewrite/write Python ASTs")
|
||||
(description "Astor is designed to allow easy manipulation of Python
|
||||
source via the AST.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public python-wikidata
|
||||
(package
|
||||
(name "python-wikidata")
|
||||
|
|
Loading…
Reference in a new issue