jsonrpc-base: init at 1.0

This commit is contained in:
Peter Hoeg 2018-02-26 19:37:54 +08:00
parent b619c9b76c
commit afd191adba
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,21 @@
{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "jsonrpc-base";
version = "1.0";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "1dl55n54ha5kf4x6hap2p1k3s4qa4w7g791wp2656rjg2zxfgywk";
};
propagatedBuildInputs = [ ];
meta = with stdenv.lib; {
description = "A JSON-RPC client library base interface";
homepage = https://github.com/armills/jsonrpc-base;
license = licenses.bsd3;
maintainers = with maintainers; [ peterhoeg ];
};
}

View File

@ -2760,6 +2760,8 @@ in {
curtsies = callPackage ../development/python-modules/curtsies { };
jsonrpc-base = callPackage ../development/python-modules/jsonrpc-base { };
onkyo-eiscp = callPackage ../development/python-modules/onkyo-eiscp { };
pyunifi = callPackage ../development/python-modules/pyunifi { };