From a8ee4e3ce491887583fd0b594e8197505a4256bc Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 2 Apr 2023 10:34:04 +0200 Subject: [PATCH] python310Packages.google-auth: 2.16.1 -> 2.17.1 Changelog: https://github.com/googleapis/google-auth-library-python/blob/v2.17.1/CHANGELOG.md --- .../python-modules/google-auth/default.nix | 30 +++++++++---------- 1 file changed, 14 insertions(+), 16 deletions(-) diff --git a/pkgs/development/python-modules/google-auth/default.nix b/pkgs/development/python-modules/google-auth/default.nix index eb96d3118918..1d53c35a9879 100644 --- a/pkgs/development/python-modules/google-auth/default.nix +++ b/pkgs/development/python-modules/google-auth/default.nix @@ -1,41 +1,40 @@ -{ stdenv -, lib +{ lib +, stdenv , buildPythonPackage -, fetchPypi -, cachetools -, pyasn1-modules -, rsa -, six , aiohttp -, cryptography -, pyopenssl -, pyu2f -, requests -, pythonOlder , aioresponses -, asynctest +, cachetools +, cryptography +, fetchPypi , flask , freezegun , grpcio , mock , oauth2client +, pyasn1-modules +, pyopenssl , pytest-asyncio , pytest-localserver , pytestCheckHook +, pythonOlder +, pyu2f +, requests , responses +, rsa +, six , urllib3 }: buildPythonPackage rec { pname = "google-auth"; - version = "2.16.1"; + version = "2.17.1"; format = "setuptools"; disabled = pythonOlder "3.6"; src = fetchPypi { inherit pname version; - hash = "sha256-X9FwmGvOa/17tchFxLg2LtseDLqQHgYhlug/i7XV0yw="; + hash = "sha256-jzebRrrTga0qC5id+wwTrSjTwqefJzSCE/iUah0V1Vo="; }; propagatedBuildInputs = [ @@ -67,7 +66,6 @@ buildPythonPackage rec { nativeCheckInputs = [ aioresponses - asynctest flask freezegun grpcio