evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / certbot-dns-route53 / default.nix
blob798631b0c79e3677013b3d8fbe1e4d3c44f3c8c1
2   buildPythonPackage,
3   acme,
4   boto3,
5   certbot,
6   pytestCheckHook,
7   pythonOlder,
8 }:
10 buildPythonPackage rec {
11   pname = "certbot-dns-route53";
12   format = "setuptools";
14   inherit (certbot) src version;
15   disabled = pythonOlder "3.6";
17   propagatedBuildInputs = [
18     acme
19     boto3
20     certbot
21   ];
23   nativeCheckInputs = [ pytestCheckHook ];
25   pytestFlagsArray = [
26     "-o cache_dir=$(mktemp -d)"
28     # Monitor https://github.com/certbot/certbot/issues/9606 for a solution
29     "-W 'ignore:pkg_resources is deprecated as an API:DeprecationWarning'"
30   ];
32   sourceRoot = "${src.name}/certbot-dns-route53";
34   meta = certbot.meta // {
35     description = "Route53 DNS Authenticator plugin for Certbot";
36   };