Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

python3Packages.python-language-server: mark as broken #146584

Merged
merged 1 commit into from
Nov 19, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ buildPythonPackage rec {
# Reading the changelog I don't expect an API break in pycodestyle and pyflakes
substituteInPlace setup.py \
--replace "pycodestyle>=2.6.0,<2.7.0" "pycodestyle>=2.6.0,<2.8.0" \
--replace "jedi>=0.17.2,<0.18.0" "jedi>=0.17.2,<0.19.0" \
--replace "pyflakes>=2.2.0,<2.3.0" "pyflakes>=2.2.0,<2.4.0"
'';

Expand Down Expand Up @@ -85,5 +86,8 @@ buildPythonPackage rec {
description = "An implementation of the Language Server Protocol for Python";
license = licenses.mit;
maintainers = [ ];
# no longer maintained
# see https://github.com/palantir/python-language-server/pull/918#issuecomment-817361554
broken = true;
};
}