From dfe9388f0791506be899090c7d7ff21587c7fcd3 Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Wed, 18 Mar 2020 14:52:03 -0700 Subject: [PATCH] python3Packages.google_auth: 1.10.0 -> 1.11.3 --- .../python-modules/google_auth/default.nix | 33 ++++++++++++++++--- 1 file changed, 29 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/google_auth/default.nix b/pkgs/development/python-modules/google_auth/default.nix index 1f86c2a2af2e..d8c6a12aeaaf 100644 --- a/pkgs/development/python-modules/google_auth/default.nix +++ b/pkgs/development/python-modules/google_auth/default.nix @@ -1,18 +1,43 @@ { stdenv, buildPythonPackage, fetchpatch, fetchPypi -, pytest, mock, oauth2client, flask, requests, setuptools, urllib3, pytest-localserver, six, pyasn1-modules, cachetools, rsa, freezegun }: +, cachetools +, flask +, freezegun +, mock +, oauth2client +, pyasn1-modules +, pytest +, pytest-localserver +, requests +, responses +, rsa +, setuptools +, six +, urllib3 +}: buildPythonPackage rec { pname = "google-auth"; - version = "1.10.0"; + version = "1.11.3"; src = fetchPypi { inherit pname version; - sha256 = "1xs8ch6bz57vs6j0p8061c7wj9ahkvrfpf1y9v7r009979507ckv"; + sha256 = "05av4clwv7kdk1v55ibcv8aim6dwfg1mi4wy0vv91fr6wq3205zc"; }; - checkInputs = [ pytest mock oauth2client flask requests urllib3 pytest-localserver freezegun ]; propagatedBuildInputs = [ six pyasn1-modules cachetools rsa setuptools ]; + checkInputs = [ + flask + freezegun + mock + oauth2client + pytest + pytest-localserver + requests + responses + urllib3 + ]; + checkPhase = '' py.test '';