bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
25 lines
583 B
Nix
25 lines
583 B
Nix
{
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
lib,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "jsonrpclib-pelix";
|
|
version = "0.4.3.3";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-xJT+cQCxE5sTEUacKLwy0cuS5P8fRRH7cdaAcgXcN3M=";
|
|
};
|
|
|
|
doCheck = false; # test_suite="tests" in setup.py but no tests in pypi.
|
|
|
|
meta = with lib; {
|
|
description = "JSON RPC client library - Pelix compatible fork";
|
|
homepage = "https://pypi.python.org/pypi/jsonrpclib-pelix/";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|