python.pkgs.google_api_python_client: fix propagatedBuildInputs

This commit is contained in:
Robert Schütz 2018-07-08 11:51:08 +02:00
parent 5adb361c52
commit 03c37fefeb

View file

@ -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";