1{ lib, buildPythonPackage, fetchPypi
2, httplib2, google_auth, google-auth-httplib2, six, uritemplate, oauth2client }:
3
4buildPythonPackage rec {
5 pname = "google-api-python-client";
6 version = "1.7.4";
7
8 src = fetchPypi {
9 inherit pname version;
10 sha256 = "5d5cb02c6f3112c68eed51b74891a49c0e35263380672d662f8bfe85b8114d7c";
11 };
12
13 # No tests included in archive
14 doCheck = false;
15
16 propagatedBuildInputs = [ httplib2 google_auth google-auth-httplib2 six uritemplate oauth2client ];
17
18 meta = with lib; {
19 description = "The core Python library for accessing Google APIs";
20 homepage = https://github.com/google/google-api-python-client;
21 license = licenses.asl20;
22 };
23}