2021-04-25 03:57:28 +00:00
|
|
|
|
{ stdenv
|
|
|
|
|
, lib
|
2021-01-09 10:05:03 +00:00
|
|
|
|
, buildPythonPackage
|
|
|
|
|
, fetchpatch
|
|
|
|
|
, fetchPypi
|
|
|
|
|
, pytestCheckHook
|
|
|
|
|
, cachetools
|
|
|
|
|
, flask
|
|
|
|
|
, freezegun
|
|
|
|
|
, mock
|
|
|
|
|
, oauth2client
|
|
|
|
|
, pyasn1-modules
|
2021-06-28 23:13:55 +00:00
|
|
|
|
, pyu2f
|
2021-01-09 10:05:03 +00:00
|
|
|
|
, pytest-localserver
|
|
|
|
|
, responses
|
|
|
|
|
, rsa
|
2021-04-05 15:23:46 +00:00
|
|
|
|
, pyopenssl
|
2021-01-09 10:05:03 +00:00
|
|
|
|
}:
|
|
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
|
pname = "google-auth";
|
2021-08-27 14:25:00 +00:00
|
|
|
|
version = "2.0.1";
|
2021-01-09 10:05:03 +00:00
|
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
|
inherit pname version;
|
2021-08-27 14:25:00 +00:00
|
|
|
|
sha256 = "sha256-6hrwULPgbrc+RHD3BNIwBzB7wOh8E+AV9rkEYPFAe9M=";
|
2021-01-09 10:05:03 +00:00
|
|
|
|
};
|
|
|
|
|
|
2021-04-05 15:23:46 +00:00
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
|
cachetools
|
|
|
|
|
pyasn1-modules
|
|
|
|
|
rsa
|
|
|
|
|
pyopenssl
|
2021-06-28 23:13:55 +00:00
|
|
|
|
pyu2f
|
2021-04-05 15:23:46 +00:00
|
|
|
|
];
|
2021-01-09 10:05:03 +00:00
|
|
|
|
|
|
|
|
|
checkInputs = [
|
|
|
|
|
flask
|
|
|
|
|
freezegun
|
|
|
|
|
mock
|
|
|
|
|
oauth2client
|
|
|
|
|
pytestCheckHook
|
|
|
|
|
pytest-localserver
|
|
|
|
|
responses
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
pythonImportsCheck = [
|
|
|
|
|
"google.auth"
|
|
|
|
|
"google.oauth2"
|
|
|
|
|
];
|
|
|
|
|
|
2021-04-25 03:57:28 +00:00
|
|
|
|
disabledTests = lib.optionals stdenv.isDarwin [
|
|
|
|
|
"test_request_with_timeout_success"
|
|
|
|
|
"test_request_with_timeout_failure"
|
|
|
|
|
"test_request_headers"
|
|
|
|
|
"test_request_error"
|
|
|
|
|
"test_request_basic"
|
|
|
|
|
];
|
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
|
meta = with lib; {
|
2021-01-09 10:05:03 +00: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";
|
|
|
|
|
changelog = "https://github.com/googleapis/google-auth-library-python/blob/v${version}/CHANGELOG.md";
|
|
|
|
|
license = licenses.asl20;
|
|
|
|
|
maintainers = with maintainers; [ SuperSandro2000 ];
|
|
|
|
|
};
|
|
|
|
|
}
|