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

This commit is contained in:
Theodore Ni 2023-08-12 23:45:09 -07:00
parent 116109d03c
commit e3574a8212
No known key found for this signature in database
GPG key ID: 48B67583BDDD4474

View file

@ -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";