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

24 lines
695 B
Nix
Raw Normal View History

2017-12-20 23:46:51 +01:00
{ stdenv, buildPythonPackage, fetchPypi, lib
, six, protobuf, enum34, futures, isPy27, isPy34 }:
2017-12-20 23:46:51 +01:00
buildPythonPackage rec {
pname = "grpcio";
version = "1.13.0";
2017-12-20 23:46:51 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "6324581e215157f0fbe335dff2e21a65b4406db98ac7cca05f1e23b4f510b426";
2017-12-20 23:46:51 +01:00
};
propagatedBuildInputs = [ six protobuf ]
++ lib.optionals (isPy27 || isPy34) [ enum34 ]
++ lib.optionals (isPy27) [ futures ];
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 ];
};
}