summary refs log tree commit diff
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)
downloadnixpkgs-03c37fefeb754051638438fb17323077ae0eaa3c.tar
nixpkgs-03c37fefeb754051638438fb17323077ae0eaa3c.tar.gz
nixpkgs-03c37fefeb754051638438fb17323077ae0eaa3c.tar.bz2
nixpkgs-03c37fefeb754051638438fb17323077ae0eaa3c.tar.lz
nixpkgs-03c37fefeb754051638438fb17323077ae0eaa3c.tar.xz
nixpkgs-03c37fefeb754051638438fb17323077ae0eaa3c.tar.zst
nixpkgs-03c37fefeb754051638438fb17323077ae0eaa3c.zip
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 72172c4a258..7f71a4ed3ef 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";