python3Packages.google-api-python-client: add missing dependency

This commit is contained in:
Gaute Ravndal 2021-01-12 07:35:37 +01:00
parent bab15d6bcd
commit 0a72c763b6

View File

@ -1,6 +1,6 @@
{ lib, buildPythonPackage, fetchPypi
, google-auth, google-auth-httplib2, google-api-core
, httplib2, six, uritemplate, oauth2client }:
, httplib2, six, uritemplate, oauth2client, setuptools }:
buildPythonPackage rec {
pname = "google-api-python-client";
@ -16,7 +16,11 @@ buildPythonPackage rec {
propagatedBuildInputs = [
google-auth google-auth-httplib2 google-api-core
httplib2 six uritemplate oauth2client
httplib2 six uritemplate oauth2client setuptools
];
pythonImportsCheck = [
"googleapiclient"
];
meta = with lib; {