nixpkgs/pkgs/development/python-modules/grpcio/default.nix

29 lines
873 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, darwin, grpc
, six, protobuf, enum34, futures, isPy27, pkgconfig
, cython, c-ares, openssl, zlib }:
2017-12-20 23:46:51 +01:00
buildPythonPackage rec {
inherit (grpc) src version;
2017-12-20 23:46:51 +01:00
pname = "grpcio";
nativeBuildInputs = [ cython pkgconfig ]
++ stdenv.lib.optional stdenv.isDarwin darwin.cctools;
buildInputs = [ c-ares openssl zlib ];
propagatedBuildInputs = [ six protobuf ]
++ stdenv.lib.optionals (isPy27) [ enum34 futures ];
2017-12-20 23:46:51 +01:00
preBuild = stdenv.lib.optionalString stdenv.isDarwin "unset AR";
GRPC_PYTHON_BUILD_SYSTEM_OPENSSL = 1;
GRPC_PYTHON_BUILD_SYSTEM_ZLIB = 1;
GRPC_PYTHON_BUILD_SYSTEM_CARES = 1;
2017-12-20 23:46:51 +01:00
meta = with stdenv.lib; {
description = "HTTP/2-based RPC framework";
license = licenses.asl20;
2017-12-20 23:46:51 +01:00
homepage = "https://grpc.io/grpc/python/";
maintainers = with maintainers; [ ];
2017-12-20 23:46:51 +01:00
};
}