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

* gnu/packages/python-xyz.scm (python-language-server): Update to 0.36.1.

[propagated-inputs]: Reorder, and remove unused inputs.

[native-inputs]: Add various native inputs for tests.
This commit is contained in:
Brett Gilio 2020-11-25 20:06:51 -06:00
parent 5bec650379
commit 723badf5ae
No known key found for this signature in database
GPG key ID: F6C52DD1BA27CB87

View file

@ -4092,28 +4092,39 @@ (define-public python-pydocstyle
(define-public python-language-server
(package
(name "python-language-server")
(version "0.34.1")
(version "0.36.1")
(source
(origin
(method url-fetch)
(uri (pypi-uri "python-language-server" version))
(sha256
(base32
"0gfjjlj7yg2nf8wkbrshwaljkwlqja4n7s1x949f495anmkg8vxr"))))
"0ljzc50z5v08is8fis1fg2dk9sb6275jlvzxb6nij0w6ys772pf8"))))
(build-system python-build-system)
(propagated-inputs
`(("python-pluggy" ,python-pluggy)
("python-jsonrpc-server" ,python-jsonrpc-server)
("python-jedi" ,python-jedi)
("python-yapf" ,python-yapf)
("python-pyflakes" ,python-pyflakes)
`(("python-autopep8" ,python-autopep8)
("python-configparser" ,python-configparser)
("python-pydocstyle" ,python-pydocstyle)
("python-future" ,python-future)
("python-jedi" ,python-jedi)
("python-jsonrpc-server" ,python-jsonrpc-server)
("python-pluggy" ,python-pluggy)
("python-pycodestyle" ,python-pycodestyle)
("python-mccabe" ,python-mccabe)
("python-pyflakes" ,python-pyflakes)
("python-rope" ,python-rope)
("python-autopep8" ,python-autopep8)
("python-flake8" ,python-flake8)
("python-pylint" ,python-pylint)))
("python-ujson" ,python-ujson)
("python-yapf" ,python-yapf)))
(native-inputs
`(("python-coverage" ,python-coverage)
("python-flaky" ,python-flaky)
("python-matplotlib" ,python-matplotlib)
("python-mock" ,python-mock)
("python-numpy" ,python-numpy)
("python-pandas" ,python-pandas)
("python-pylint" ,python-pylint)
("python-pytest" ,python-pytest)
("python-pytest-cov" ,python-pytest-cov)
("python-versioneer" ,python-versioneer)))
(home-page "https://github.com/palantir/python-language-server")
(synopsis "Python implementation of the Language Server Protocol")
(description