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 @@
{ stdenv, buildPythonPackage, fetchPypi
, google_auth, ply, protobuf3_5, grpcio, requests
, google_auth, ply, protobuf, grpcio, requests
, googleapis_common_protos, dill, future, pytest, mock, unittest2 }:
buildPythonPackage rec {
@@ -11,7 +11,7 @@ buildPythonPackage rec {
sha256 = "1d844c56f942d98f12a1b0ecabe8a17d69bef41ff513edd97253bcde02ffd929";
};
propagatedBuildInputs = [ google_auth ply protobuf3_5 grpcio requests googleapis_common_protos dill future ];
propagatedBuildInputs = [ google_auth ply protobuf grpcio requests googleapis_common_protos dill future ];
checkInputs = [ pytest mock unittest2 ];
# Importing test__grpc_google_auth fails with "ModuleNotFoundError: No module named 'google_auth_httplib2'", where