python3Packages.python-language-server: add setuptools as a de… (#69117)
python3Packages.python-language-server: add setuptools as a dependency
This commit is contained in:
commit
970145f051
@ -1,6 +1,6 @@
|
|||||||
{ stdenv, buildPythonPackage, fetchFromGitHub, pythonOlder, isPy27
|
{ 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
|
||||||
, pytest, mock, pytestcov, coverage
|
, pytest, mock, pytestcov, coverage, setuptools
|
||||||
, # Allow building a limited set of providers, e.g. ["pycodestyle"].
|
, # Allow building a limited set of providers, e.g. ["pycodestyle"].
|
||||||
providers ? ["*"]
|
providers ? ["*"]
|
||||||
# The following packages are optional and
|
# The following packages are optional and
|
||||||
@ -44,7 +44,7 @@ buildPythonPackage rec {
|
|||||||
HOME=$TEMPDIR pytest
|
HOME=$TEMPDIR pytest
|
||||||
'';
|
'';
|
||||||
|
|
||||||
propagatedBuildInputs = [ jedi pluggy future python-jsonrpc-server ]
|
propagatedBuildInputs = [ setuptools jedi pluggy future python-jsonrpc-server ]
|
||||||
++ stdenv.lib.optional (withProvider "autopep8") autopep8
|
++ stdenv.lib.optional (withProvider "autopep8") autopep8
|
||||||
++ stdenv.lib.optional (withProvider "mccabe") mccabe
|
++ stdenv.lib.optional (withProvider "mccabe") mccabe
|
||||||
++ stdenv.lib.optional (withProvider "pycodestyle") pycodestyle
|
++ stdenv.lib.optional (withProvider "pycodestyle") pycodestyle
|
||||||
|
Loading…
Reference in New Issue
Block a user