1{ lib
2, fetchPypi
3, buildPythonPackage
4, acme
5, certbot
6}:
7
8buildPythonPackage rec {
9 pname = "certbot-dns-inwx";
10 version = "2.2.0";
11
12 src = fetchPypi {
13 inherit pname version;
14 hash = "sha256-v03QBHsxhl6R8YcwWIKD+pf4APy9S2vFcQe3ZEc6AjI=";
15 };
16
17 propagatedBuildInputs = [
18 acme
19 certbot
20 ];
21
22 # Doesn't have any tests
23 doCheck = false;
24
25 pytestCheckHook = [ "certbot_dns_inwx" ];
26
27 meta = with lib; {
28 description = "INWX DNS Authenticator plugin for Certbot";
29 homepage = "https://github.com/oGGy990/certbot-dns-inwx";
30 license = with licenses; [ asl20 mit ];
31 maintainers = with maintainers; [ onny ];
32 };
33}