python-jsonrpc-server: init at 0.0.1

This commit is contained in:
Jörg Thalheim 2018-09-12 01:09:52 +01:00
parent a25dcb6607
commit e4393102e6
2 changed files with 36 additions and 0 deletions

View file

@ -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 ];
};
}

View file

@ -10837,6 +10837,8 @@ in {
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-isort = callPackage ../development/python-modules/pyls-isort {};