Skip to content

Commit

Permalink
python3.pkgs.certbot-dns-rfc2136: init at 1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
flokli committed Jul 9, 2020
1 parent b9d97f3 commit ee9123d
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
35 changes: 35 additions & 0 deletions pkgs/development/python-modules/certbot-dns-rfc2136/default.nix
@@ -0,0 +1,35 @@
{ buildPythonPackage
, acme
, certbot
, dnspython
, isPy3k
, pytest
, pytestCheckHook
}:

buildPythonPackage rec {
inherit (certbot) src version;

pname = "certbot-dns-rfc2136";

propagatedBuildInputs = [
acme
certbot
dnspython
];

checkInputs = [
pytest
pytestCheckHook
];

disabled = !isPy3k;

pytestFlagsArray = [ "-o cache_dir=$(mktemp -d)" ];

sourceRoot = "source/${pname}";

meta = certbot.meta // {
description = "RFC 2136 DNS Authenticator plugin for Certbot";
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Expand Up @@ -581,6 +581,8 @@ in {

certbot-dns-cloudflare = callPackage ../development/python-modules/certbot-dns-cloudflare { };

certbot-dns-rfc2136 = callPackage ../development/python-modules/certbot-dns-rfc2136 { };

certbot-dns-route53 = callPackage ../development/python-modules/certbot-dns-route53 { };

cfn-flip = callPackage ../development/python-modules/cfn-flip { };
Expand Down

0 comments on commit ee9123d

Please sign in to comment.