Merge pull request #109087 from gravndal/google-api-python-client

python3Packages.google-api-python-client: add missing dependency
This commit is contained in:
Sandro 2021-01-12 23:35:39 +01:00 committed by GitHub
commit 59d3f03eee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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; {