1{ stdenv, buildPythonPackage, fetchPypi }:
2
3buildPythonPackage rec {
4 pname = "jsonrpc-base";
5 version = "1.0";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "1dl55n54ha5kf4x6hap2p1k3s4qa4w7g791wp2656rjg2zxfgywk";
10 };
11
12 propagatedBuildInputs = [ ];
13
14 meta = with stdenv.lib; {
15 description = "A JSON-RPC client library base interface";
16 homepage = https://github.com/armills/jsonrpc-base;
17 license = licenses.bsd3;
18 maintainers = with maintainers; [ peterhoeg ];
19 };
20}