Commit 38b08b66 authored by Robert Schütz's avatar Robert Schütz
Browse files

python312Packages.certbot-dns-google: don't depend on oauth2client

The dependency was removed in https://github.com/certbot/certbot/pull/9670.
parent 5b96072b
Loading
Loading
Loading
Loading
+7 −9
Original line number Diff line number Diff line
@@ -3,33 +3,31 @@
  acme,
  certbot,
  google-api-python-client,
  oauth2client,
  google-auth,
  pytestCheckHook,
  pythonOlder,
  setuptools,
}:

buildPythonPackage rec {
  pname = "certbot-dns-google";
  format = "setuptools";

  inherit (certbot) src version;
  disabled = pythonOlder "3.6";
  pyproject = true;

  sourceRoot = "${src.name}/certbot-dns-google";

  propagatedBuildInputs = [
  build-system = [ setuptools ];

  dependencies = [
    acme
    certbot
    google-api-python-client
    oauth2client
    google-auth
  ];

  nativeCheckInputs = [ pytestCheckHook ];

  pytestFlagsArray = [
    "-p no:cacheprovider"
    # https://github.com/certbot/certbot/issues/9988
    "-Wignore::DeprecationWarning"
  ];

  meta = certbot.meta // {