about summary refs log tree commit diff
path: root/pkgs/development/python-modules/google_api_core
diff options
context:
space:
mode:
authorRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-04-08 00:04:44 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2018-04-08 11:36:07 +0200
commit35b38b021b47064e973c948b5377753a57150cf2 (patch)
tree4dda7475e2f337ed2209b76a6cfbb05c1898c553 /pkgs/development/python-modules/google_api_core
parentb1c6c0af87f6a32a33e017290938d89fa75bf53f (diff)
python.pkgs.protobuf: use 3.5 by default
Diffstat (limited to 'pkgs/development/python-modules/google_api_core')
-rw-r--r--pkgs/development/python-modules/google_api_core/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/google_api_core/default.nix b/pkgs/development/python-modules/google_api_core/default.nix
index abd4b886478a6..baf590f995723 100644
--- a/pkgs/development/python-modules/google_api_core/default.nix
+++ b/pkgs/development/python-modules/google_api_core/default.nix
@@ -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 ];