mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-19 15:11:30 +00:00
We already have msgpack, which is the same. Building a Python env with `spacy` resulted in a collision between an `.so` provided through both `msgpack` and `msgpack-python`. I don't know why `transitional = True` was set. These kind of things should be documented!
23 lines
594 B
Nix
23 lines
594 B
Nix
{ lib, buildPythonPackage, fetchPypi, future, gevent, msgpack, pyzmq }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "zerorpc";
|
|
version = "0.6.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "14d0nmprs0nm17d8kg2f7qalsi8x7c4damsccqgncylj7mpnk9hh";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|