3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/certbot-dns-rfc2136/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
526 B
Nix
Raw Normal View History

{ buildPythonPackage
, acme
, certbot
, dnspython
, pytestCheckHook
2021-10-29 19:59:06 +01:00
, pythonOlder
}:
buildPythonPackage rec {
pname = "certbot-dns-rfc2136";
2021-10-29 19:59:06 +01:00
inherit (certbot) src version;
disabled = pythonOlder "3.6";
propagatedBuildInputs = [
acme
certbot
dnspython
];
checkInputs = [
pytestCheckHook
];
pytestFlagsArray = [ "-o cache_dir=$(mktemp -d)" ];
2021-10-29 19:59:06 +01:00
sourceRoot = "source/certbot-dns-rfc2136";
meta = certbot.meta // {
description = "RFC 2136 DNS Authenticator plugin for Certbot";
};
}