Unverified Commit e3574a82 authored by Theodore Ni's avatar Theodore Ni
Browse files

python3.pkgs.certbot-dns-route53: ignore warning in setuptools 67.5.0+

parent 116109d0
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -22,7 +22,12 @@ buildPythonPackage rec {
    pytestCheckHook
  ];

  pytestFlagsArray = [ "-o cache_dir=$(mktemp -d)" ];
  pytestFlagsArray = [
    "-o cache_dir=$(mktemp -d)"

    # Monitor https://github.com/certbot/certbot/issues/9606 for a solution
    "-W 'ignore:pkg_resources is deprecated as an API:DeprecationWarning'"
  ];

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