python.pkgs.protobuf: use 3.5 by default

This commit is contained in:
Robert Schütz
2018-04-08 00:04:44 +02:00
committed by Frederik Rietdijk
parent b1c6c0af87
commit 35b38b021b
5 changed files with 9 additions and 15 deletions

View File

@@ -1,5 +1,5 @@
{ lib, buildPythonPackage, fetchPypi, pythonOlder
, google_auth, protobuf3_5, googleapis_common_protos, requests, grpcio, futures, mock, pytest }:
, google_auth, protobuf, googleapis_common_protos, requests, grpcio, futures, mock, pytest }:
buildPythonPackage rec {
pname = "google-api-core";
@@ -11,7 +11,7 @@ buildPythonPackage rec {
};
propagatedBuildInputs = [
googleapis_common_protos protobuf3_5
googleapis_common_protos protobuf
google_auth requests grpcio
] ++ lib.optional (pythonOlder "3.2") futures;
checkInputs = [ mock pytest ];