summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/certbot-dns-wedos/default.nix
blob: a34d525163e384d2d0d7b1e586035bfc8a6498f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
  lib,
  buildPythonPackage,
  fetchPypi,
  acme,
  certbot,
  setuptools,
  requests,
  pytz,
}:

buildPythonPackage rec {
  pname = "certbot-dns-wedos";
  version = "2.4";
  pyproject = true;

  src = fetchPypi {
    inherit version;
    pname = "certbot_dns_wedos";
    hash = "sha256-Sle3hoBLwVPF30caCyYtt3raY5Gs9ekg0DthvHxvB4E=";
  };

  build-system = [ setuptools ];

  dependencies = [
    certbot
    acme
    requests
    pytz
  ];

  pythonImportsCheck = [ "certbot_dns_wedos" ];

  meta = {
    description = "Wedos DNS Authenticator plugin for Certbot";
    homepage = "https://github.com/clazzor/certbot-dns-wedos";
    license = lib.licenses.asl20;
    maintainers = [ lib.maintainers.tsandrini ];
  };
}