1{ buildPythonPackage
2, acme
3, boto3
4, certbot
5, pytestCheckHook
6, pythonOlder
7}:
8
9buildPythonPackage rec {
10 pname = "certbot-dns-route53";
11
12 inherit (certbot) src version;
13 disabled = pythonOlder "3.6";
14
15 propagatedBuildInputs = [
16 acme
17 boto3
18 certbot
19 ];
20
21 checkInputs = [
22 pytestCheckHook
23 ];
24
25 pytestFlagsArray = [ "-o cache_dir=$(mktemp -d)" ];
26
27 sourceRoot = "source/certbot-dns-route53";
28
29 meta = certbot.meta // {
30 description = "Route53 DNS Authenticator plugin for Certbot";
31 };
32}