2018-02-26 11:37:54 +00:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "jsonrpc-base";
|
2019-11-19 14:35:36 +00:00
|
|
|
version = "1.0.3";
|
2018-02-26 11:37:54 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-11-19 14:35:36 +00:00
|
|
|
sha256 = "7bda99589b4566f5027c2aeae122f409d8ccf4c811b278b8cfb616903871efb2";
|
2018-02-26 11:37:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A JSON-RPC client library base interface";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/armills/jsonrpc-base";
|
2018-02-26 11:37:54 +00:00
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ peterhoeg ];
|
|
|
|
};
|
|
|
|
}
|