nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 21.05 35 lines 521 B view raw
1{ buildPythonPackage 2, acme 3, certbot 4, dnspython 5, isPy3k 6, pytest 7, pytestCheckHook 8}: 9 10buildPythonPackage rec { 11 inherit (certbot) src version; 12 13 pname = "certbot-dns-rfc2136"; 14 15 propagatedBuildInputs = [ 16 acme 17 certbot 18 dnspython 19 ]; 20 21 checkInputs = [ 22 pytest 23 pytestCheckHook 24 ]; 25 26 disabled = !isPy3k; 27 28 pytestFlagsArray = [ "-o cache_dir=$(mktemp -d)" ]; 29 30 sourceRoot = "source/${pname}"; 31 32 meta = certbot.meta // { 33 description = "RFC 2136 DNS Authenticator plugin for Certbot"; 34 }; 35}