mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
36 lines
1.2 KiB
Nix
36 lines
1.2 KiB
Nix
{ lib, buildPythonPackage, fetchPypi
|
|
, google_auth, google-auth-httplib2, google_api_core
|
|
, httplib2, six, uritemplate, oauth2client }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "google-api-python-client";
|
|
version = "1.9.3";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "220349ce189a85229fc46875d467101318495a4a735c0ff2f165b9bdbc7511a0";
|
|
};
|
|
|
|
# No tests included in archive
|
|
doCheck = false;
|
|
|
|
propagatedBuildInputs = [
|
|
google_auth google-auth-httplib2 google_api_core
|
|
httplib2 six uritemplate oauth2client
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "The official Python client library for Google's discovery based APIs";
|
|
longDescription = ''
|
|
These client libraries are officially supported by Google. However, the
|
|
libraries are considered complete and are in maintenance mode. This means
|
|
that we will address critical bugs and security issues but will not add
|
|
any new features.
|
|
'';
|
|
homepage = "https://github.com/google/google-api-python-client";
|
|
changelog = "https://github.com/googleapis/google-api-python-client/releases/tag/v${version}";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ primeos ];
|
|
};
|
|
}
|