gnu: python-language-server: Update to 0.29.1.
* gnu/packages/python-xyz.scm (python-language-server): Update to 0.29.1. [inputs]: Add python-flake8
This commit is contained in:
parent
11af54466c
commit
808dd2d0ab
1 changed files with 29 additions and 34 deletions
|
@ -3121,44 +3121,39 @@ Language (TOML) configuration files.")
|
||||||
Server (PLS).")
|
Server (PLS).")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
;; XXX: We must use a non-release version since the latest release version
|
|
||||||
;; requires python-jedi version < 0.15.
|
|
||||||
(define-public python-language-server
|
(define-public python-language-server
|
||||||
(let ((commit "c3cab77a85b1de4af1aec1bafea6a7320d6baec5")
|
(package
|
||||||
(revision "1"))
|
(name "python-language-server")
|
||||||
(package
|
(version "0.29.1")
|
||||||
(name "python-language-server")
|
(source
|
||||||
(version (git-version "0.28.3" revision commit))
|
(origin
|
||||||
(source
|
(method url-fetch)
|
||||||
(origin
|
(uri (pypi-uri "python-language-server" version))
|
||||||
(method git-fetch)
|
(sha256
|
||||||
(uri (git-reference
|
(base32
|
||||||
(url "https://github.com/palantir/python-language-server.git")
|
"1f8qlflh6j3s7qfmzhirpl8fgidl6f0qbakdmiml96wdxzvka0s3"))))
|
||||||
(commit commit)))
|
(build-system python-build-system)
|
||||||
(sha256
|
(propagated-inputs
|
||||||
(base32
|
`(("python-pluggy" ,python-pluggy)
|
||||||
"1q0xdwgln09sh58j0ryygj92hfgdhwcs57zjvqihya23jr5v0bz4"))))
|
("python-jsonrpc-server" ,python-jsonrpc-server)
|
||||||
(build-system python-build-system)
|
("python-jedi" ,python-jedi)
|
||||||
(propagated-inputs
|
("python-yapf" ,python-yapf)
|
||||||
`(("python-pluggy" ,python-pluggy)
|
("python-pyflakes" ,python-pyflakes)
|
||||||
("python-jsonrpc-server" ,python-jsonrpc-server)
|
("python-pydocstyle" ,python-pydocstyle)
|
||||||
("python-jedi" ,python-jedi)
|
("python-pycodestyle" ,python-pycodestyle)
|
||||||
("python-yapf" ,python-yapf)
|
("python-mccabe" ,python-mccabe)
|
||||||
("python-pyflakes" ,python-pyflakes)
|
("python-rope" ,python-rope)
|
||||||
("python-pydocstyle" ,python-pydocstyle)
|
("python-autopep8" ,python-autopep8)
|
||||||
("python-pycodestyle" ,python-pycodestyle)
|
("python-flake8" ,python-flake8)
|
||||||
("python-mccabe" ,python-mccabe)
|
("python-pylint" ,python-pylint)))
|
||||||
("python-rope" ,python-rope)
|
(home-page "https://github.com/palantir/python-language-server")
|
||||||
("python-autopep8" ,python-autopep8)
|
(synopsis "Python implementation of the Language Server Protocol")
|
||||||
("python-pylint" ,python-pylint)))
|
(description
|
||||||
(home-page "https://github.com/palantir/python-language-server")
|
"The Python Language Server (pyls) is an implementation of the Python 3
|
||||||
(synopsis "Python implementation of the Language Server Protocol")
|
|
||||||
(description
|
|
||||||
"The Python Language Server (pyls) is an implementation of the Python 3
|
|
||||||
language specification for the Language Server Protocol (LSP). This tool is
|
language specification for the Language Server Protocol (LSP). This tool is
|
||||||
used in text editing environments to provide a complete and integrated
|
used in text editing environments to provide a complete and integrated
|
||||||
feature-set for programming Python effectively.")
|
feature-set for programming Python effectively.")
|
||||||
(license license:expat))))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public python-black
|
(define-public python-black
|
||||||
(package
|
(package
|
||||||
|
|
Reference in a new issue