aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/google_auth/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/google_auth/default.nix')
-rw-r--r--nixpkgs/pkgs/development/python-modules/google_auth/default.nix14
1 files changed, 10 insertions, 4 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/google_auth/default.nix b/nixpkgs/pkgs/development/python-modules/google_auth/default.nix
index d8c6a12aeaa..59ed94d3486 100644
--- a/nixpkgs/pkgs/development/python-modules/google_auth/default.nix
+++ b/nixpkgs/pkgs/development/python-modules/google_auth/default.nix
@@ -17,11 +17,11 @@
buildPythonPackage rec {
pname = "google-auth";
- version = "1.11.3";
+ version = "1.20.1";
src = fetchPypi {
inherit pname version;
- sha256 = "05av4clwv7kdk1v55ibcv8aim6dwfg1mi4wy0vv91fr6wq3205zc";
+ sha256 = "2f34dd810090d0d4c9d5787c4ad7b4413d1fbfb941e13682c7a2298d3b6cdcc8";
};
propagatedBuildInputs = [ six pyasn1-modules cachetools rsa setuptools ];
@@ -43,8 +43,14 @@ buildPythonPackage rec {
'';
meta = with stdenv.lib; {
- description = "This library simplifies using Google’s various server-to-server authentication mechanisms to access Google APIs.";
- homepage = "https://google-auth.readthedocs.io/en/latest/";
+ description = "Google Auth Python Library";
+ longDescription = ''
+ This library simplifies using Google’s 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;
maintainers = with maintainers; [ ];
};