diff options
| author | Michael Weiss <dev.primeos@gmail.com> | 2020-03-11 23:54:47 +0100 |
|---|---|---|
| committer | Michael Weiss <dev.primeos@gmail.com> | 2020-03-15 16:34:56 +0100 |
| commit | 069f62de77c5e1887159f560cee0ebab05e752c1 (patch) | |
| tree | 44314b7ba92f9ed383a07259ec8e706c9f4ca9cc /pkgs/development/python-modules/google-api-python-client | |
| parent | 875bcef98ba6dc224d49e8cf39aad4aa19219983 (diff) | |
python3Packages.google_api_python_client: 1.7.11 -> 1.7.12
Diffstat (limited to 'pkgs/development/python-modules/google-api-python-client')
| -rw-r--r-- | pkgs/development/python-modules/google-api-python-client/default.nix | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/google-api-python-client/default.nix b/pkgs/development/python-modules/google-api-python-client/default.nix index e81f82740869..06ee032cdb7d 100644 --- a/pkgs/development/python-modules/google-api-python-client/default.nix +++ b/pkgs/development/python-modules/google-api-python-client/default.nix @@ -3,11 +3,11 @@ buildPythonPackage rec { pname = "google-api-python-client"; - version = "1.7.11"; + version = "1.7.12"; src = fetchPypi { inherit pname version; - sha256 = "137vwb9544vjxkwnbr98x0f4p6ri5i678wxxxgbsx4kdyrs83a58"; + sha256 = "02blmm32xfwjjcxds6ym9nnz29wzyiahd64shrsrkrdm6aqagmlz"; }; # No tests included in archive @@ -16,8 +16,15 @@ buildPythonPackage rec { propagatedBuildInputs = [ httplib2 google_auth google-auth-httplib2 six uritemplate oauth2client ]; meta = with lib; { - description = "The core Python library for accessing Google APIs"; - homepage = https://github.com/google/google-api-python-client; + 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 ]; }; |
