2020-11-03 01:14:43 +00:00
|
|
|
|
{ stdenv, buildPythonPackage, fetchpatch, fetchPypi, pythonOlder
|
|
|
|
|
, pytestCheckHook, cachetools, flask, freezegun, mock, oauth2client
|
|
|
|
|
, pyasn1-modules, pytest, pytest-localserver, requests, responses, rsa
|
|
|
|
|
, setuptools, six, urllib3 }:
|
2017-12-20 22:45:36 +00:00
|
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
|
pname = "google-auth";
|
2020-11-06 05:23:53 +00:00
|
|
|
|
version = "1.23.0";
|
2017-12-20 22:45:36 +00:00
|
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
|
inherit pname version;
|
2020-11-09 13:49:10 +00:00
|
|
|
|
sha256 = "5176db85f1e7e837a646cd9cede72c3c404ccf2e3373d9ee14b2db88febad440";
|
2017-12-20 22:45:36 +00:00
|
|
|
|
};
|
|
|
|
|
|
2020-11-03 01:14:43 +00:00
|
|
|
|
disabled = pythonOlder "3.5";
|
|
|
|
|
|
2019-10-15 22:59:25 +01:00
|
|
|
|
propagatedBuildInputs = [ six pyasn1-modules cachetools rsa setuptools ];
|
2017-12-20 22:45:36 +00:00
|
|
|
|
|
2020-03-18 21:52:03 +00:00
|
|
|
|
checkInputs = [
|
|
|
|
|
flask
|
|
|
|
|
freezegun
|
|
|
|
|
mock
|
|
|
|
|
oauth2client
|
2020-11-03 01:14:43 +00:00
|
|
|
|
pytestCheckHook
|
2020-03-18 21:52:03 +00:00
|
|
|
|
pytest-localserver
|
|
|
|
|
requests
|
|
|
|
|
responses
|
|
|
|
|
urllib3
|
|
|
|
|
];
|
|
|
|
|
|
2017-12-20 22:45:36 +00:00
|
|
|
|
meta = with stdenv.lib; {
|
2020-06-03 14:48:44 +01:00
|
|
|
|
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";
|
2020-11-03 01:14:43 +00:00
|
|
|
|
changelog =
|
|
|
|
|
"https://github.com/googleapis/google-auth-library-python/blob/v${version}/CHANGELOG.md";
|
2020-06-03 14:48:44 +01:00
|
|
|
|
# Documentation: https://googleapis.dev/python/google-auth/latest/index.html
|
2017-12-20 22:45:36 +00:00
|
|
|
|
license = licenses.asl20;
|
2020-02-26 14:19:08 +00:00
|
|
|
|
maintainers = with maintainers; [ ];
|
2017-12-20 22:45:36 +00:00
|
|
|
|
};
|
|
|
|
|
}
|