1{ lib, buildPythonPackage, fetchPypi, isPy3k
2, httplib2, google_auth, google-auth-httplib2, six, uritemplate, oauth2client }:
3
4buildPythonPackage rec {
5 pname = "google-api-python-client";
6 version = "1.7.8";
7
8 src = fetchPypi {
9 inherit pname version;
10 sha256 = "0n18frf0ghmwf5lxmkyski4b5h1rsx93ibq3iw0k3s2wxl371406";
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 maintainers = with maintainers; [ primeos ];
23 };
24}