10 buildPythonPackage rec {
11 pname = "certbot-dns-route53";
12 format = "setuptools";
14 inherit (certbot) src version;
15 disabled = pythonOlder "3.6";
17 propagatedBuildInputs = [
23 nativeCheckInputs = [ pytestCheckHook ];
26 "-o cache_dir=$(mktemp -d)"
28 # Monitor https://github.com/certbot/certbot/issues/9606 for a solution
29 "-W 'ignore:pkg_resources is deprecated as an API:DeprecationWarning'"
32 sourceRoot = "${src.name}/certbot-dns-route53";
34 meta = certbot.meta // {
35 description = "Route53 DNS Authenticator plugin for Certbot";