python3Packages.google_auth: 1.11.3 -> 1.16.0

This commit is contained in:
Michael Weiss 2020-06-03 15:48:44 +02:00
parent 86ae3d03ab
commit 52c6501e6e
No known key found for this signature in database
GPG Key ID: 5BE487C4D4771D83

View File

@ -17,11 +17,11 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "google-auth"; pname = "google-auth";
version = "1.11.3"; version = "1.16.0";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "05av4clwv7kdk1v55ibcv8aim6dwfg1mi4wy0vv91fr6wq3205zc"; sha256 = "1xd7fi7vhqbbkvwjg5fgj8bkbfjwxx4f2bb0zsnj8wci46qk4dqv";
}; };
propagatedBuildInputs = [ six pyasn1-modules cachetools rsa setuptools ]; propagatedBuildInputs = [ six pyasn1-modules cachetools rsa setuptools ];
@ -43,8 +43,14 @@ buildPythonPackage rec {
''; '';
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "This library simplifies using Googles various server-to-server authentication mechanisms to access Google APIs."; description = "Google Auth Python Library";
homepage = "https://google-auth.readthedocs.io/en/latest/"; longDescription = ''
This library simplifies using Googles various server-to-server
authentication mechanisms to access Google APIs.
'';
homepage = "https://github.com/googleapis/google-auth-library-python";
changelog = "https://github.com/googleapis/google-auth-library-python/blob/v${version}/CHANGELOG.md";
# Documentation: https://googleapis.dev/python/google-auth/latest/index.html
license = licenses.asl20; license = licenses.asl20;
maintainers = with maintainers; [ ]; maintainers = with maintainers; [ ];
}; };