depot/third_party/nixpkgs/pkgs/development/python-modules/certbot-dns-inwx/default.nix
Default email c3ac4d4040 Project import generated by Copybara.
GitOrigin-RevId: 1158501e7c7cba26d922723cf9f70099995eb755
2022-09-14 15:05:37 -03:00

33 lines
648 B
Nix

{ lib
, fetchPypi
, buildPythonPackage
, acme
, certbot
}:
buildPythonPackage rec {
pname = "certbot-dns-inwx";
version = "2.1.3";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-yAgualY4J92pJ8PIkICg8w0eYHmT5L3qAUOCW/cAitw=";
};
propagatedBuildInputs = [
acme
certbot
];
# Doesn't have any tests
doCheck = false;
pytestCheckHook = [ "certbot_dns_inwx" ];
meta = with lib; {
description = "INWX DNS Authenticator plugin for Certbot";
homepage = "https://github.com/oGGy990/certbot-dns-inwx";
license = with licenses; [ asl20 mit ];
maintainers = with maintainers; [ onny ];
};
}