nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python3.pkgs.certbot-dns-rfc2136: init at 1.6.0

+37
+35
pkgs/development/python-modules/certbot-dns-rfc2136/default.nix
··· 1 + { buildPythonPackage 2 + , acme 3 + , certbot 4 + , dnspython 5 + , isPy3k 6 + , pytest 7 + , pytestCheckHook 8 + }: 9 + 10 + buildPythonPackage rec { 11 + inherit (certbot) src version; 12 + 13 + pname = "certbot-dns-rfc2136"; 14 + 15 + propagatedBuildInputs = [ 16 + acme 17 + certbot 18 + dnspython 19 + ]; 20 + 21 + checkInputs = [ 22 + pytest 23 + pytestCheckHook 24 + ]; 25 + 26 + disabled = !isPy3k; 27 + 28 + pytestFlagsArray = [ "-o cache_dir=$(mktemp -d)" ]; 29 + 30 + sourceRoot = "source/${pname}"; 31 + 32 + meta = certbot.meta // { 33 + description = "RFC 2136 DNS Authenticator plugin for Certbot"; 34 + }; 35 + }
+2
pkgs/top-level/python-packages.nix
··· 581 581 582 582 certbot-dns-cloudflare = callPackage ../development/python-modules/certbot-dns-cloudflare { }; 583 583 584 + certbot-dns-rfc2136 = callPackage ../development/python-modules/certbot-dns-rfc2136 { }; 585 + 584 586 certbot-dns-route53 = callPackage ../development/python-modules/certbot-dns-route53 { }; 585 587 586 588 cfn-flip = callPackage ../development/python-modules/cfn-flip { };