about summary refs log tree commit diff
path: root/pkgs/development/python-modules/google-api-python-client/default.nix
blob: d4de33b5a837d8099a2a4c2a8393c73dff039c8b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib, buildPythonPackage, fetchPypi
, httplib2, six, oauth2client, uritemplate }:

buildPythonPackage rec {
  pname = "google-api-python-client";
  version = "1.6.6";

  src = fetchPypi {
    inherit pname version;
    sha256 = "ec72991f95201996a4edcea44a079cae0292798086beaadb054d91921632fe1b";
  };

  # No tests included in archive
  doCheck = false;

  propagatedBuildInputs = [ httplib2 six oauth2client uritemplate ];

  meta = with lib; {
    description = "The core Python library for accessing Google APIs";
    homepage = https://github.com/google/google-api-python-client;
    license = licenses.asl20;
  };
}