1{
2 lib,
3 fetchFromGitHub,
4 buildPythonPackage,
5 setuptools,
6 acme,
7 certbot,
8}:
9
10buildPythonPackage rec {
11 pname = "certbot-dns-inwx";
12 version = "3.0.1";
13 pyproject = true;
14
15 src = fetchFromGitHub {
16 owner = "oGGy990";
17 repo = "certbot-dns-inwx";
18 tag = "v${version}";
19 hash = "sha256-9dDSJcXlPq065CloaszwutUXsGn+Y9fIeTiGmiXGonY=";
20 };
21
22 build-system = [ setuptools ];
23
24 propagatedBuildInputs = [
25 acme
26 certbot
27 ];
28
29 # Doesn't have any tests
30 doCheck = false;
31
32 pytestImportsCheck = [ "certbot_dns_inwx" ];
33
34 meta = with lib; {
35 description = "INWX DNS Authenticator plugin for Certbot";
36 homepage = "https://github.com/oGGy990/certbot-dns-inwx";
37 license = with licenses; [
38 asl20
39 mit
40 ];
41 maintainers = with maintainers; [ onny ];
42 };
43}