Merge pull request #146584 from jonringer/mark-python-language-server-broken

python3Packages.python-language-server: mark as broken

authored by Fabian Affolter and committed by GitHub 64d482f0 293e6f0c

+4
+4
pkgs/development/python-modules/python-language-server/default.nix
··· 36 # Reading the changelog I don't expect an API break in pycodestyle and pyflakes 37 substituteInPlace setup.py \ 38 --replace "pycodestyle>=2.6.0,<2.7.0" "pycodestyle>=2.6.0,<2.8.0" \ 39 --replace "pyflakes>=2.2.0,<2.3.0" "pyflakes>=2.2.0,<2.4.0" 40 ''; 41 ··· 85 description = "An implementation of the Language Server Protocol for Python"; 86 license = licenses.mit; 87 maintainers = [ ]; 88 }; 89 }
··· 36 # Reading the changelog I don't expect an API break in pycodestyle and pyflakes 37 substituteInPlace setup.py \ 38 --replace "pycodestyle>=2.6.0,<2.7.0" "pycodestyle>=2.6.0,<2.8.0" \ 39 + --replace "jedi>=0.17.2,<0.18.0" "jedi>=0.17.2,<0.19.0" \ 40 --replace "pyflakes>=2.2.0,<2.3.0" "pyflakes>=2.2.0,<2.4.0" 41 ''; 42 ··· 86 description = "An implementation of the Language Server Protocol for Python"; 87 license = licenses.mit; 88 maintainers = [ ]; 89 + # no longer maintained 90 + # see https://github.com/palantir/python-language-server/pull/918#issuecomment-817361554 91 + broken = true; 92 }; 93 }