2019-10-18 17:31:34 -07:00
|
|
|
{ stdenv, buildPythonPackage, darwin, grpc
|
2019-08-03 14:20:00 -07:00
|
|
|
, six, protobuf, enum34, futures, isPy27, pkgconfig
|
2019-03-27 11:56:19 -07:00
|
|
|
, cython}:
|
2017-12-20 14:46:51 -08:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2019-10-18 17:31:34 -07:00
|
|
|
inherit (grpc) src version;
|
2017-12-20 14:46:51 -08:00
|
|
|
pname = "grpcio";
|
|
|
|
|
2019-03-27 11:56:19 -07:00
|
|
|
nativeBuildInputs = [ cython pkgconfig ]
|
2019-08-03 14:20:00 -07:00
|
|
|
++ stdenv.lib.optional stdenv.isDarwin darwin.cctools;
|
2018-08-11 07:42:43 -07:00
|
|
|
|
2018-04-07 15:04:44 -07:00
|
|
|
propagatedBuildInputs = [ six protobuf ]
|
2019-08-03 14:20:00 -07:00
|
|
|
++ stdenv.lib.optionals (isPy27) [ enum34 futures ];
|
2017-12-20 14:46:51 -08:00
|
|
|
|
2019-08-03 14:20:00 -07:00
|
|
|
preBuild = stdenv.lib.optionalString stdenv.isDarwin "unset AR";
|
2018-08-11 07:42:43 -07:00
|
|
|
|
2017-12-20 14:46:51 -08:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "HTTP/2-based RPC framework";
|
2019-08-03 14:20:00 -07:00
|
|
|
license = licenses.asl20;
|
2017-12-20 14:46:51 -08:00
|
|
|
homepage = "https://grpc.io/grpc/python/";
|
|
|
|
maintainers = with maintainers; [ vanschelven ];
|
|
|
|
};
|
|
|
|
}
|