about summary refs log tree commit diff
path: root/pkgs/development/python-modules/google-api-python-client/default.nix
blob: 74fe88be44755ba2210de6cc2cb3673cbca80024 (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.7";

  src = fetchPypi {
    inherit pname version;
    sha256 = "05583a386e323f428552419253765314a4b29828c3cee15be735f9ebfa5aebf2";
  };

  # 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;
  };
}