summary refs log tree commit diff
path: root/pkgs/development/python-modules/jsonrpc-base/default.nix
blob: 01c0c3f4aa1868b117fb22a62aa9367cabf90ac1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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 ];
  };
}