summary refs log tree commit diff
path: root/pkgs/development/python-modules/jsonrpc-base/default.nix
blob: db47a2240fb6cd2eefa2bd804e111c033c0f16f8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ lib, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
  pname = "jsonrpc-base";
  version = "1.1.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "7f374c57bfa1cb16d1f340d270bc0d9f1f5608fb1ac6c9ea15768c0e6ece48b7";
  };

  propagatedBuildInputs = [ ];

  meta = with lib; {
    description = "A JSON-RPC client library base interface";
    homepage = "https://github.com/armills/jsonrpc-base";
    license = licenses.bsd3;
    maintainers = with maintainers; [ peterhoeg ];
  };
}