Skip to content

Commit

Permalink
python.pkgs.google_api_python_client: fix propagatedBuildInputs
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Schütz committed Jul 8, 2018
1 parent 5adb361 commit 03c37fe
Showing 1 changed file with 2 additions and 2 deletions.
@@ -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";
Expand All @@ -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";
Expand Down

0 comments on commit 03c37fe

Please sign in to comment.