2017-12-20 22:45:36 +00:00
|
|
|
|
{ stdenv, buildPythonPackage, fetchPypi
|
|
|
|
|
, pytest, mock, oauth2client, flask, requests, urllib3, pytest-localserver, six, pyasn1-modules, cachetools, rsa }:
|
|
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
|
pname = "google-auth";
|
2018-02-17 13:19:59 +00:00
|
|
|
|
version = "1.4.1";
|
2017-12-20 22:45:36 +00:00
|
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
|
inherit pname version;
|
2018-02-17 13:19:59 +00:00
|
|
|
|
sha256 = "9051802d3dae256036cca9e34633a32c0ed1427730d4ebc513dff91ec8b6dd45";
|
2017-12-20 22:45:36 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
checkInputs = [ pytest mock oauth2client flask requests urllib3 pytest-localserver ];
|
|
|
|
|
propagatedBuildInputs = [ six pyasn1-modules cachetools rsa ];
|
|
|
|
|
|
|
|
|
|
# The removed test tests the working together of google_auth and google's https://pypi.python.org/pypi/oauth2client
|
|
|
|
|
# but the latter is deprecated. Since it is not currently part of the nixpkgs collection and deprecated it will
|
|
|
|
|
# probably never be. We just remove the test to make the tests work again.
|
|
|
|
|
postPatch = ''rm tests/test__oauth2client.py'';
|
|
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
|
py.test
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
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/";
|
|
|
|
|
license = licenses.asl20;
|
|
|
|
|
maintainers = with maintainers; [ vanschelven ];
|
|
|
|
|
};
|
|
|
|
|
}
|