linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / certbot-dns-rfc2136 / default.nix
blob19e53aa20cc9bdc4a910656ef2f1a916f2490e59
1 { buildPythonPackage
2 , acme
3 , certbot
4 , dnspython
5 , isPy3k
6 , pytest
7 , pytestCheckHook
8 }:
10 buildPythonPackage rec {
11   inherit (certbot) src version;
13   pname = "certbot-dns-rfc2136";
15   propagatedBuildInputs = [
16     acme
17     certbot
18     dnspython
19   ];
21   checkInputs = [
22     pytest
23     pytestCheckHook
24   ];
26   disabled = !isPy3k;
28   pytestFlagsArray = [ "-o cache_dir=$(mktemp -d)" ];
30   sourceRoot = "source/${pname}";
32   meta = certbot.meta // {
33     description = "RFC 2136 DNS Authenticator plugin for Certbot";
34   };