pythonPackages.zerorpc: init at 0.6.1 (#59102)

This commit is contained in:
xeji 2019-04-09 22:20:37 +02:00 committed by GitHub
parent 9002989bf0
commit d6afe8ce5c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ lib, buildPythonPackage, fetchPypi, future, gevent, msgpack-python, pyzmq }:
buildPythonPackage rec {
pname = "zerorpc";
version = "0.6.1";
src = fetchPypi {
inherit pname version;
sha256 = "14d0nmprs0nm17d8kg2f7qalsi8x7c4damsccqgncylj7mpnk9hh";
};
propagatedBuildInputs = [ future gevent msgpack-python 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 ];
};
}

View file

@ -4433,6 +4433,8 @@ in {
zc_lockfile = callPackage ../development/python-modules/zc_lockfile { };
zerorpc = callPackage ../development/python-modules/zerorpc { };
zipstream = callPackage ../development/python-modules/zipstream { };
zodb = callPackage ../development/python-modules/zodb {};