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

buildPythonPackage rec {
  name = "${pname}-${version}";
  pname = "jsonrpclib-pelix";
  version = "0.3.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1qs95vxplxwspbrqy8bvc195s58iy43qkf75yrjfql2sim8b25sl";
  };

  meta = with lib; {
    description = "JSON RPC client library - Pelix compatible fork";
    homepage = https://pypi.python.org/pypi/jsonrpclib-pelix/;
    license = lib.licenses.asl20;
    maintainers = with maintainers; [ moredread ];
  };
}