summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/google-api-python-client
diff options
context:
space:
mode:
authorRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-07-08 11:51:08 +0200
committerRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-07-08 11:51:08 +0200
commit03c37fefeb754051638438fb17323077ae0eaa3c (patch)
treea4b6d2a4f192b07fe4c10acdb51cf7d92ba0b8de /pkgs/development/python-modules/google-api-python-client
parent5adb361c523204d56d18c978f46dc371e4c9c448 (diff)
python.pkgs.google_api_python_client: fix propagatedBuildInputs
Diffstat (limited to 'pkgs/development/python-modules/google-api-python-client')
-rw-r--r--pkgs/development/python-modules/google-api-python-client/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/google-api-python-client/default.nix b/pkgs/development/python-modules/google-api-python-client/default.nix
index 72172c4a2586..7f71a4ed3ef2 100644
--- a/pkgs/development/python-modules/google-api-python-client/default.nix
+++ b/pkgs/development/python-modules/google-api-python-client/default.nix
@@ -1,5 +1,5 @@
{ lib, buildPythonPackage, fetchPypi
-, httplib2, six, google-auth-httplib2, uritemplate }:
+, httplib2, google_auth, google-auth-httplib2, six, uritemplate, oauth2client }:
buildPythonPackage rec {
pname = "google-api-python-client";
@@ -13,7 +13,7 @@ buildPythonPackage rec {
# No tests included in archive
doCheck = false;
- propagatedBuildInputs = [ httplib2 google-auth-httplib2 six uritemplate ];
+ propagatedBuildInputs = [ httplib2 google_auth google-auth-httplib2 six uritemplate oauth2client ];
meta = with lib; {
description = "The core Python library for accessing Google APIs";