gnu: python-language-server: Update to 0.25.0.

* gnu/packages/python-xyz.scm (python-language-server): Update to 0.25.0.
[propagated-inputs]: Add python-pylint.

Signed-off-by: Leo Famulari <leo@famulari.name>
This commit is contained in:
Brett Gilio 2019-03-14 18:34:42 -05:00 committed by Leo Famulari
parent 138950a88b
commit fe4a4bd23a
No known key found for this signature in database
GPG key ID: 2646FA30BACA7F08

View file

@ -2634,14 +2634,14 @@ (define-public python-pydocstyle
(define-public python-language-server
(package
(name "python-language-server")
(version "0.24.0")
(version "0.25.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "python-language-server" version))
(sha256
(base32
"05zmv6jr7qbgnkz0lqh5pr7kr4lm12i8ljm2k5h5kz3q9m8d4mm0"))))
"1xabnaqd4n72myrc3mxl2y33vr2p7c9c5a87n77p9k327ckvdx01"))))
(build-system python-build-system)
(propagated-inputs
`(("python-pluggy" ,python-pluggy)
@ -2653,7 +2653,8 @@ (define-public python-language-server
("python-pycodestyle" ,python-pycodestyle)
("python-mccabe" ,python-mccabe)
("python-rope" ,python-rope)
("python-autopep8" ,python-autopep8)))
("python-autopep8" ,python-autopep8)
("python-pylint" ,python-pylint)))
(home-page "https://github.com/palantir/python-language-server")
(synopsis "Python implementation of the Language Server Protocol")
(description