python3Packages.google_auth: 1.10.0 -> 1.11.3

This commit is contained in:
Jonathan Ringer 2020-03-18 14:52:03 -07:00 committed by Jon
parent e87db4ac75
commit dfe9388f07

View File

@ -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
'';