summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/python-language-server
diff options
context:
space:
mode:
authorbetaboon <betaboon@0x80.ninja>2019-03-20 23:37:21 +0100
committerbetaboon <betaboon@0x80.ninja>2019-03-20 23:37:21 +0100
commit48343d0dd06a7c39beead760e4041d508fc2d1ca (patch)
tree45033533764a94756773ac16d056c972a626de0b /pkgs/development/python-modules/python-language-server
parentbeb60916d95ac90ff5cddc54fc7101f93636175d (diff)
python-language-server: 0.21.2 -> 0.25.0
Diffstat (limited to 'pkgs/development/python-modules/python-language-server')
-rw-r--r--pkgs/development/python-modules/python-language-server/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/python-language-server/default.nix b/pkgs/development/python-modules/python-language-server/default.nix
index 56c00fa11a9f..121a98335b64 100644
--- a/pkgs/development/python-modules/python-language-server/default.nix
+++ b/pkgs/development/python-modules/python-language-server/default.nix
@@ -10,6 +10,7 @@
, pycodestyle ? null
, pydocstyle ? null
, pyflakes ? null
+, pylint ? null
, rope ? null
, yapf ? null
}:
@@ -20,13 +21,13 @@ in
buildPythonPackage rec {
pname = "python-language-server";
- version = "0.21.2";
+ version = "0.25.0";
src = fetchFromGitHub {
owner = "palantir";
repo = "python-language-server";
rev = version;
- sha256 = "11fvrpv1kymj2fzh8fhys4qk1xc64j1rbdrz252awyab7b3509i7";
+ sha256 = "10la48m10j4alfnpw0xw359fb833scf5kv7kjvh7djf6ij7cfsvq";
};
# The tests require all the providers, disable otherwise.
@@ -49,6 +50,7 @@ buildPythonPackage rec {
++ stdenv.lib.optional (withProvider "pycodestyle") pycodestyle
++ stdenv.lib.optional (withProvider "pydocstyle") pydocstyle
++ stdenv.lib.optional (withProvider "pyflakes") pyflakes
+ ++ stdenv.lib.optional (withProvider "pylint") pylint
++ stdenv.lib.optional (withProvider "rope") rope
++ stdenv.lib.optional (withProvider "yapf") yapf
++ stdenv.lib.optional isPy27 configparser