python3Packages.python-lsp-server: 1.12.2 -> 1.13.0 (#423602)

This commit is contained in:
Gaétan Lepage 2025-07-10 09:20:07 +02:00 committed by GitHub
commit f9979a27fe
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 9 additions and 2 deletions

View File

@ -7,6 +7,7 @@
setuptools-scm, setuptools-scm,
# dependencies # dependencies
black,
docstring-to-markdown, docstring-to-markdown,
jedi, jedi,
pluggy, pluggy,
@ -41,14 +42,14 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "python-lsp-server"; pname = "python-lsp-server";
version = "1.12.2"; version = "1.13.0";
pyproject = true; pyproject = true;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "python-lsp"; owner = "python-lsp";
repo = "python-lsp-server"; repo = "python-lsp-server";
tag = "v${version}"; tag = "v${version}";
hash = "sha256-tdhYLAXs1Yf3DqCzf/pLOlJvr/zYRkSlAF6hsavSu+A="; hash = "sha256-NIqBIB4IG4xo7zDhaafWvT1RUnkqup1gm9WQhdtpIfc=";
}; };
pythonRelaxDeps = [ pythonRelaxDeps = [
@ -63,6 +64,7 @@ buildPythonPackage rec {
build-system = [ setuptools-scm ]; build-system = [ setuptools-scm ];
dependencies = [ dependencies = [
black
docstring-to-markdown docstring-to-markdown
jedi jedi
pluggy pluggy
@ -82,6 +84,7 @@ buildPythonPackage rec {
pylint pylint
rope rope
toml toml
websockets
whatthepatch whatthepatch
yapf yapf
]; ];
@ -116,6 +119,9 @@ buildPythonPackage rec {
disabledTests = [ disabledTests = [
# avoid dependencies on many Qt things just to run one singular test # avoid dependencies on many Qt things just to run one singular test
"test_pyqt_completion" "test_pyqt_completion"
# Flaky: ValueError: I/O operation on closed file
"test_concurrent_ws_requests"
]; ];
pythonImportsCheck = [ pythonImportsCheck = [

View File

@ -74,6 +74,7 @@ buildPythonPackage rec {
pythonRelaxDeps = [ pythonRelaxDeps = [
"ipython" "ipython"
"python-lsp-server"
]; ];
dependencies = [ dependencies = [