mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Merge pull request #46563 from Mic92/pyls
python-language-server: 0.19.0 -> 0.21.2
This commit is contained in:
commit
1696eb4c52
3 changed files with 40 additions and 4 deletions
|
@ -0,0 +1,34 @@
|
||||||
|
{ stdenv, buildPythonPackage, fetchFromGitHub, pythonOlder
|
||||||
|
, pytest, mock, pytestcov, coverage
|
||||||
|
, future, futures
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "python-jsonrpc-server";
|
||||||
|
version = "0.0.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "palantir";
|
||||||
|
repo = "python-jsonrpc-server";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "0p5dj1hxx3yz8vjk59dcp3h6ci1hrjkbzf9lr3vviy0xw327409k";
|
||||||
|
};
|
||||||
|
|
||||||
|
checkInputs = [
|
||||||
|
pytest mock pytestcov coverage
|
||||||
|
];
|
||||||
|
|
||||||
|
checkPhase = ''
|
||||||
|
pytest
|
||||||
|
'';
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ future ]
|
||||||
|
++ stdenv.lib.optional (pythonOlder "3.2") futures;
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = https://github.com/palantir/python-jsonrpc-server;
|
||||||
|
description = "A Python 2 and 3 asynchronous JSON RPC server";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = [ maintainers.mic92 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -1,5 +1,5 @@
|
||||||
{ stdenv, buildPythonPackage, fetchFromGitHub, pythonOlder, isPy27
|
{ stdenv, buildPythonPackage, fetchFromGitHub, pythonOlder, isPy27
|
||||||
, configparser, futures, future, jedi, pluggy
|
, configparser, futures, future, jedi, pluggy, python-jsonrpc-server
|
||||||
, pytest, mock, pytestcov, coverage
|
, pytest, mock, pytestcov, coverage
|
||||||
, # Allow building a limited set of providers, e.g. ["pycodestyle"].
|
, # Allow building a limited set of providers, e.g. ["pycodestyle"].
|
||||||
providers ? ["*"]
|
providers ? ["*"]
|
||||||
|
@ -20,13 +20,13 @@ in
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "python-language-server";
|
pname = "python-language-server";
|
||||||
version = "0.19.0";
|
version = "0.21.2";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "palantir";
|
owner = "palantir";
|
||||||
repo = "python-language-server";
|
repo = "python-language-server";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "0glnhnjmsnnh1vs73n9dglknfkhcgp03nkjbpz0phh1jlqrkrwm6";
|
sha256 = "11fvrpv1kymj2fzh8fhys4qk1xc64j1rbdrz252awyab7b3509i7";
|
||||||
};
|
};
|
||||||
|
|
||||||
# The tests require all the providers, disable otherwise.
|
# The tests require all the providers, disable otherwise.
|
||||||
|
@ -43,7 +43,7 @@ buildPythonPackage rec {
|
||||||
HOME=$TEMPDIR pytest
|
HOME=$TEMPDIR pytest
|
||||||
'';
|
'';
|
||||||
|
|
||||||
propagatedBuildInputs = [ jedi pluggy future ]
|
propagatedBuildInputs = [ 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
|
||||||
|
|
|
@ -10837,6 +10837,8 @@ in {
|
||||||
|
|
||||||
python-language-server = callPackage ../development/python-modules/python-language-server {};
|
python-language-server = callPackage ../development/python-modules/python-language-server {};
|
||||||
|
|
||||||
|
python-jsonrpc-server = callPackage ../development/python-modules/python-jsonrpc-server {};
|
||||||
|
|
||||||
pyls-black = callPackage ../development/python-modules/pyls-black {};
|
pyls-black = callPackage ../development/python-modules/pyls-black {};
|
||||||
|
|
||||||
pyls-isort = callPackage ../development/python-modules/pyls-isort {};
|
pyls-isort = callPackage ../development/python-modules/pyls-isort {};
|
||||||
|
|
Loading…
Reference in a new issue