me
/
guix
Archived
1
0
Fork 0

gnu: python-jedi: Update to 0.12.1.

* gnu/packages/python.scm (python-jedi): Update to 0.12.1.
[synopsis, description]: Adjust to expanded functionality.
master
Tobias Geerinckx-Rice 2018-09-10 21:48:05 +02:00
parent 7a6eaf5ca9
commit cc12ac58a2
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 9 additions and 6 deletions

View File

@ -9639,14 +9639,14 @@ characters, mouse support, and auto suggestions.")
(define-public python-jedi (define-public python-jedi
(package (package
(name "python-jedi") (name "python-jedi")
(version "0.12.0") (version "0.12.1")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (pypi-uri "jedi" version)) (uri (pypi-uri "jedi" version))
(sha256 (sha256
(base32 (base32
"1bcr7csx4xil1iwmk03d79jis0bkmgi9k0kir3xa4rmwqsagcwhr")))) "1h8ypnjisn57kiv1zqrkj1im6sbfnhxllqaa8znh39qkd47ys2dl"))))
(build-system python-build-system) (build-system python-build-system)
(arguments (arguments
`(#:phases `(#:phases
@ -9658,11 +9658,14 @@ characters, mouse support, and auto suggestions.")
("python-parso" ,python-parso) ("python-parso" ,python-parso)
("python-docopt" ,python-docopt))) ("python-docopt" ,python-docopt)))
(home-page "https://github.com/davidhalter/jedi") (home-page "https://github.com/davidhalter/jedi")
(synopsis (synopsis "Autocompletion and static analysis library for Python")
"Autocompletion for Python that can be used for text editors")
(description (description
"Jedi is an autocompletion tool for Python that can be used for text "Jedi is a static analysis tool for Python that can be used in Integrated
editors.") Development Environments (@dfn{IDE}s) and text editors. It understands Python
on a deeper level than many other static analysis frameworks for Python.
Jedi understands docstrings and you can use Jedi autocompletion in your REPL as
well.")
(license license:expat))) (license license:expat)))
(define-public python2-jedi (define-public python2-jedi