35 lines
906 B
Nix
35 lines
906 B
Nix
{ lib, buildPythonPackage, fetchFromGitHub, pythonOlder
|
|
, pytestCheckHook, mock, pytestcov, coverage
|
|
, future, futures ? null, ujson, isPy38
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "python-jsonrpc-server";
|
|
version = "0.4.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "palantir";
|
|
repo = "python-jsonrpc-server";
|
|
rev = version;
|
|
sha256 = "0pcf50qvcxqnz3db58whqd8z89cdph19pfs1whgfm0zmwbwk0lw6";
|
|
};
|
|
|
|
postPatch = ''
|
|
sed -i "s/version=versioneer.get_version(),/version=\"$version\",/g" setup.py
|
|
'';
|
|
|
|
checkInputs = [
|
|
pytestCheckHook mock pytestcov coverage
|
|
];
|
|
|
|
propagatedBuildInputs = [ future ujson ]
|
|
++ lib.optional (pythonOlder "3.2") futures;
|
|
|
|
meta = with 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 ];
|
|
};
|
|
}
|