tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
0
fork
atom
overview
issues
pulls
pipelines
python3.pkgs.certbot-dns-rfc2136: init at 1.6.0
Florian Klink
5 years ago
ee9123dd
b9d97f31
+37
2 changed files
expand all
collapse all
unified
split
pkgs
development
python-modules
certbot-dns-rfc2136
default.nix
top-level
python-packages.nix
+35
pkgs/development/python-modules/certbot-dns-rfc2136/default.nix
reviewed
···
1
1
+
{ buildPythonPackage
2
2
+
, acme
3
3
+
, certbot
4
4
+
, dnspython
5
5
+
, isPy3k
6
6
+
, pytest
7
7
+
, pytestCheckHook
8
8
+
}:
9
9
+
10
10
+
buildPythonPackage rec {
11
11
+
inherit (certbot) src version;
12
12
+
13
13
+
pname = "certbot-dns-rfc2136";
14
14
+
15
15
+
propagatedBuildInputs = [
16
16
+
acme
17
17
+
certbot
18
18
+
dnspython
19
19
+
];
20
20
+
21
21
+
checkInputs = [
22
22
+
pytest
23
23
+
pytestCheckHook
24
24
+
];
25
25
+
26
26
+
disabled = !isPy3k;
27
27
+
28
28
+
pytestFlagsArray = [ "-o cache_dir=$(mktemp -d)" ];
29
29
+
30
30
+
sourceRoot = "source/${pname}";
31
31
+
32
32
+
meta = certbot.meta // {
33
33
+
description = "RFC 2136 DNS Authenticator plugin for Certbot";
34
34
+
};
35
35
+
}
+2
pkgs/top-level/python-packages.nix
reviewed
···
581
581
582
582
certbot-dns-cloudflare = callPackage ../development/python-modules/certbot-dns-cloudflare { };
583
583
584
584
+
certbot-dns-rfc2136 = callPackage ../development/python-modules/certbot-dns-rfc2136 { };
585
585
+
584
586
certbot-dns-route53 = callPackage ../development/python-modules/certbot-dns-route53 { };
585
587
586
588
cfn-flip = callPackage ../development/python-modules/cfn-flip { };