Skip to content

Commit

Permalink
python.pkgs.grpcio: use system openssl, zlib, and c-ares
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewbauer committed Apr 14, 2020
1 parent 6ff1813 commit 849f26d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion pkgs/development/python-modules/grpcio/default.nix
@@ -1,6 +1,6 @@
{ stdenv, buildPythonPackage, darwin, grpc
, six, protobuf, enum34, futures, isPy27, pkgconfig
, cython}:
, cython, c-ares, openssl, zlib }:

buildPythonPackage rec {
inherit (grpc) src version;
Expand All @@ -9,11 +9,16 @@ buildPythonPackage rec {
nativeBuildInputs = [ cython pkgconfig ]
++ stdenv.lib.optional stdenv.isDarwin darwin.cctools;

buildInputs = [ c-ares openssl zlib ];
propagatedBuildInputs = [ six protobuf ]
++ stdenv.lib.optionals (isPy27) [ enum34 futures ];

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;

meta = with stdenv.lib; {
description = "HTTP/2-based RPC framework";
license = licenses.asl20;
Expand Down

0 comments on commit 849f26d

Please sign in to comment.