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

Changed files
+9 -2
pkgs
development
python-modules
python-lsp-server
spyder
+8 -2
pkgs/development/python-modules/python-lsp-server/default.nix
···
setuptools-scm,
# dependencies
+
black,
docstring-to-markdown,
jedi,
pluggy,
···
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 = [
···
build-system = [ setuptools-scm ];
dependencies = [
+
black
docstring-to-markdown
jedi
pluggy
···
pylint
rope
toml
+
websockets
whatthepatch
yapf
];
···
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 = [
+1
pkgs/development/python-modules/spyder/default.nix
···
pythonRelaxDeps = [
"ipython"
+
"python-lsp-server"
];
dependencies = [