python312Packages.google-auth-oauthlib: 1.2.0 -> 1.2.1 (#339908)

This commit is contained in:
Fabián Heredia Montiel 2024-09-09 00:06:29 -06:00 committed by GitHub
commit e5f383c61f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -14,31 +14,32 @@
buildPythonPackage rec {
pname = "google-auth-oauthlib";
version = "1.2.0";
version = "1.2.1";
pyproject = true;
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-KS0tN4M0nysHNKCgIHseHjIqwZPCwJ2PfGE/t8xQHqg=";
pname = "google_auth_oauthlib";
inherit version;
hash = "sha256-r9DK0JKi6qU82OgphVfW3hA0xstKdAUAtTV7ZIr5cmM=";
};
nativeBuildInputs = [ setuptools ];
build-system = [ setuptools ];
propagatedBuildInputs = [
dependencies = [
google-auth
requests-oauthlib
];
passthru.optional-dependencies = {
optional-dependencies = {
tool = [ click ];
};
nativeCheckInputs = [
mock
pytestCheckHook
] ++ passthru.optional-dependencies.tool;
] ++ optional-dependencies.tool;
disabledTests =
[
@ -53,11 +54,11 @@ buildPythonPackage rec {
pythonImportsCheck = [ "google_auth_oauthlib" ];
meta = with lib; {
changelog = "https://github.com/googleapis/google-auth-library-python-oauthlib/blob/v${version}/CHANGELOG.md";
description = "Google Authentication Library: oauthlib integration";
homepage = "https://github.com/GoogleCloudPlatform/google-auth-library-python-oauthlib";
changelog = "https://github.com/googleapis/google-auth-library-python-oauthlib/blob/v${version}/CHANGELOG.md";
license = licenses.asl20;
mainProgram = "google-oauthlib-tool";
maintainers = with maintainers; [ terlar ];
mainProgram = "google-oauthlib-tool";
};
}