summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/python-language-server
diff options
context:
space:
mode:
authorMatt Huszagh <huszaghmatt@gmail.com>2019-10-26 12:59:39 -0700
committerMatt Huszagh <huszaghmatt@gmail.com>2019-10-26 12:59:39 -0700
commitb754310a688ffb1a2e224ef18910cf4c762cd8e5 (patch)
tree8110bea00a54e55ae974652e72ba7b788cca8660 /pkgs/development/python-modules/python-language-server
parenta260b9a4846ae894281dbc98308bb7576f50d183 (diff)
pythonPackages.python-language-server: 0.28.3 -> 0.29.1
Fixes a failing test due to a pylint update.
Diffstat (limited to 'pkgs/development/python-modules/python-language-server')
-rw-r--r--pkgs/development/python-modules/python-language-server/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/python-language-server/default.nix b/pkgs/development/python-modules/python-language-server/default.nix
index 4bf482b9ae49..b029373bdca7 100644
--- a/pkgs/development/python-modules/python-language-server/default.nix
+++ b/pkgs/development/python-modules/python-language-server/default.nix
@@ -1,5 +1,5 @@
{ stdenv, buildPythonPackage, fetchFromGitHub, pythonOlder, isPy27
-, backports_functools_lru_cache, configparser, futures, future, jedi, pluggy, python-jsonrpc-server
+, backports_functools_lru_cache, configparser, futures, future, jedi, pluggy, python-jsonrpc-server, flake8
, pytest, mock, pytestcov, coverage, setuptools
, # Allow building a limited set of providers, e.g. ["pycodestyle"].
providers ? ["*"]
@@ -21,13 +21,13 @@ in
buildPythonPackage rec {
pname = "python-language-server";
- version = "0.28.3";
+ version = "0.29.1";
src = fetchFromGitHub {
owner = "palantir";
repo = "python-language-server";
rev = version;
- sha256 = "16d8i43r75h0cijggkkmmpnycn29wlbjp63mgg3s4nbrxfa96x2k";
+ sha256 = "0hsp0h8vma8z6f0mg311hp59h6hayl7zzxmy295x5fl2l9iiakfv";
};
# The tests require all the providers, disable otherwise.
@@ -44,7 +44,7 @@ buildPythonPackage rec {
HOME=$TEMPDIR pytest
'';
- propagatedBuildInputs = [ setuptools jedi pluggy future python-jsonrpc-server ]
+ propagatedBuildInputs = [ setuptools jedi pluggy future python-jsonrpc-server flake8 ]
++ stdenv.lib.optional (withProvider "autopep8") autopep8
++ stdenv.lib.optional (withProvider "mccabe") mccabe
++ stdenv.lib.optional (withProvider "pycodestyle") pycodestyle