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

View File

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