mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-28 07:12:30 -05:00
Revert "gnu: python-lsp-server: Update to 1.5.0."
This reverts commit 07f807f12c
because it
requires a python-pluggy update which seems to cause some issues.
This commit is contained in:
parent
2e88164023
commit
6b2d29a6f5
1 changed files with 15 additions and 3 deletions
|
@ -5273,19 +5273,30 @@ (define-public python-pydocstyle
|
||||||
(define-public python-lsp-server
|
(define-public python-lsp-server
|
||||||
(package
|
(package
|
||||||
(name "python-lsp-server")
|
(name "python-lsp-server")
|
||||||
(version "1.5.0")
|
(version "1.3.3")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "python-lsp-server" version))
|
(uri (pypi-uri "python-lsp-server" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"039qi5x9sa1mjzinimxhiwzj8lxn5d5l33q6qhkjl0i5k70r9h75"))))
|
"0h6wxzmm6qjfwkkn3mnzn1fpmcp23fpbk74bi8p540q1nzccqj0v"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-before 'check 'set-HOME
|
||||||
|
(lambda _ (setenv "HOME" "/tmp")))
|
||||||
|
(replace 'check
|
||||||
|
(lambda _
|
||||||
|
;; Disable failing test.
|
||||||
|
(invoke "python" "-m" "pytest" "-k"
|
||||||
|
"not test_pyqt_completion"))))))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list python-autopep8
|
(list python-autopep8
|
||||||
python-pydocstyle
|
python-pydocstyle
|
||||||
python-flake8
|
python-flake8
|
||||||
|
python-future
|
||||||
python-jedi
|
python-jedi
|
||||||
python-lsp-jsonrpc
|
python-lsp-jsonrpc
|
||||||
python-pluggy
|
python-pluggy
|
||||||
|
@ -5298,12 +5309,13 @@ (define-public python-lsp-server
|
||||||
(list python-coverage
|
(list python-coverage
|
||||||
python-flaky
|
python-flaky
|
||||||
python-matplotlib
|
python-matplotlib
|
||||||
|
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-whatthepatch))
|
python-versioneer))
|
||||||
(home-page "https://github.com/python-lsp/python-lsp-server")
|
(home-page "https://github.com/python-lsp/python-lsp-server")
|
||||||
(synopsis "Python implementation of the Language Server Protocol")
|
(synopsis "Python implementation of the Language Server Protocol")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in a new issue