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

29 lines
857 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi, lib, darwin
, six, protobuf, enum34, futures, isPy27, isPy34, pkgconfig }:
2017-12-20 23:46:51 +01:00
with stdenv.lib;
2017-12-20 23:46:51 +01:00
buildPythonPackage rec {
pname = "grpcio";
version = "1.16.1";
2017-12-20 23:46:51 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "0am76f8r4v5kcvbar593n2c1mp25cxi67cxigjhd0rnncmk4bgs1";
2017-12-20 23:46:51 +01:00
};
nativeBuildInputs = [ pkgconfig ] ++ optional stdenv.isDarwin darwin.cctools;
propagatedBuildInputs = [ six protobuf ]
++ lib.optionals (isPy27 || isPy34) [ enum34 ]
++ lib.optionals (isPy27) [ futures ];
2017-12-20 23:46:51 +01:00
preBuild = optionalString stdenv.isDarwin "unset AR";
2017-12-20 23:46:51 +01:00
meta = with stdenv.lib; {
description = "HTTP/2-based RPC framework";
license = lib.licenses.asl20;
2017-12-20 23:46:51 +01:00
homepage = "https://grpc.io/grpc/python/";
maintainers = with maintainers; [ vanschelven ];
};
}