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