summary refs log blame commit diff
path: root/pkgs/development/python-modules/certbot-dns-route53/default.nix
blob: 7052107418c9abcee16a768900c873943af6763b (plain) (tree)
1
2
3
4
5
6
7
8
9



                    
                 
             


                        

                                


                                






                           


                   

                                                     
                                            




                                                                 
{ buildPythonPackage
, acme
, boto3
, certbot
, pytestCheckHook
, pythonOlder
}:

buildPythonPackage rec {
  pname = "certbot-dns-route53";

  inherit (certbot) src version;
  disabled = pythonOlder "3.6";

  propagatedBuildInputs = [
    acme
    boto3
    certbot
  ];

  checkInputs = [
    pytestCheckHook
  ];

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

  sourceRoot = "source/certbot-dns-route53";

  meta = certbot.meta // {
    description = "Route53 DNS Authenticator plugin for Certbot";
  };
}