2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, buildPythonPackage, fetchFromGitHub, pythonOlder
|
2018-09-12 01:09:52 +01:00
|
|
|
, pytest, mock, pytestcov, coverage
|
2020-04-17 11:22:35 +01:00
|
|
|
, future, futures, ujson, isPy38
|
2020-06-16 16:12:57 +01:00
|
|
|
, fetchpatch
|
2018-09-12 01:09:52 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "python-jsonrpc-server";
|
2020-02-16 08:47:45 +00:00
|
|
|
version = "0.3.4";
|
2018-09-12 01:09:52 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "palantir";
|
|
|
|
repo = "python-jsonrpc-server";
|
|
|
|
rev = version;
|
2020-06-01 09:59:41 +01:00
|
|
|
sha256 = "027sx5pv4i9a192kr00bjjcxxprh2xyr8q5372q8ghff3xryk9dd";
|
2018-09-12 01:09:52 +01:00
|
|
|
};
|
|
|
|
|
2019-03-20 22:36:59 +00:00
|
|
|
postPatch = ''
|
2020-06-28 14:42:11 +01:00
|
|
|
sed -i "s/version=versioneer.get_version(),/version=\"$version\",/g" setup.py
|
2020-06-16 16:12:57 +01:00
|
|
|
# https://github.com/palantir/python-jsonrpc-server/issues/36
|
2020-06-28 08:27:18 +01:00
|
|
|
sed -iEe "s!'ujson.*\$!'ujson',!" setup.py
|
2019-03-20 22:36:59 +00:00
|
|
|
'';
|
|
|
|
|
2018-09-12 01:09:52 +01:00
|
|
|
checkInputs = [
|
|
|
|
pytest mock pytestcov coverage
|
|
|
|
];
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
pytest
|
|
|
|
'';
|
|
|
|
|
2020-06-16 16:12:57 +01:00
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/palantir/python-jsonrpc-server/commit/0a04cc4e9d44233b1038b12d63cd3bd437c2374e.patch";
|
|
|
|
sha256 = "177zdnp1808r2pg189bvzab44l8i2alsgv04kmrlhhnv40h66qyg";
|
|
|
|
})
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/palantir/python-jsonrpc-server/commit/5af6e43d0c1fb9a6a29b96d38cfd6dbeec85d0ea.patch";
|
|
|
|
sha256 = "1gx7lc1jxar1ngqqfkdn21s46y1mfnjf7ky2886ydk53nkaba91m";
|
|
|
|
})
|
|
|
|
];
|
2020-04-17 11:22:35 +01:00
|
|
|
|
2020-02-16 08:47:45 +00:00
|
|
|
propagatedBuildInputs = [ future ujson ]
|
2018-09-12 01:09:52 +01:00
|
|
|
++ stdenv.lib.optional (pythonOlder "3.2") futures;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/palantir/python-jsonrpc-server";
|
2018-09-12 01:09:52 +01:00
|
|
|
description = "A Python 2 and 3 asynchronous JSON RPC server";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = [ maintainers.mic92 ];
|
|
|
|
};
|
|
|
|
}
|