Unverified Commit e5f383c6 authored by Fabián Heredia Montiel's avatar Fabián Heredia Montiel Committed by GitHub
Browse files

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

parents d01b5ff5 3edee96d
Loading
Loading
Loading
Loading
+10 −9
Original line number Diff line number Diff line
@@ -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";
  };
}