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

buildPythonPackage rec {
  pname = "zerorpc";
  version = "0.6.3";

  src = fetchPypi {
    inherit pname version;
    sha256 = "d2ee247a566fc703f29c277d767f6f61f1e12f76d0402faea4bd815f32cbf37f";
  };

  propagatedBuildInputs = [ future gevent msgpack pyzmq ];

  doCheck = false; # pypi version doesn't include tests

  meta = with lib; {
    description = "An easy to use, intuitive, and cross-language RPC";
    homepage = "https://www.zerorpc.io";
    license = licenses.mit;
    maintainers = with maintainers; [ xeji ];
  };
}