pythonPackages.jsonrpclib-pelix: init at 0.3.1

This fork of jsonrpclib supports Python 3 and is necessary for electrum
from version 3.0.0 onwards.

Adding myself - moredread - as maintainer.
This commit is contained in:
André-Patrick Bubel 2017-11-18 18:46:31 +01:00 committed by Joachim Fasting
parent bd384b0ae9
commit ab447d9d76
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,22 @@
{ buildPythonPackage
, fetchPypi
, lib
}:
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "jsonrpclib-pelix";
version = "0.3.1";
src = fetchPypi {
inherit pname version;
sha256 = "1qs95vxplxwspbrqy8bvc195s58iy43qkf75yrjfql2sim8b25sl";
};
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; [ moredread ];
};
}

View File

@ -5940,6 +5940,8 @@ in {
};
};
jsonrpclib-pelix = callPackage ../development/python-modules/jsonrpclib-pelix {};
jsonwatch = buildPythonPackage rec {
name = "jsonwatch-0.2.0";