From fdabbea239e9bbe723df31fb93adb3fdb0bf3f9a Mon Sep 17 00:00:00 2001 From: Jonas Heinrich Date: Sat, 10 Sep 2022 15:11:22 +0200 Subject: [PATCH] python310Packages.certbot-dns-inwx: init at 2.1.3 --- .../certbot-dns-inwx/default.nix | 33 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 35 insertions(+) create mode 100644 pkgs/development/python-modules/certbot-dns-inwx/default.nix diff --git a/pkgs/development/python-modules/certbot-dns-inwx/default.nix b/pkgs/development/python-modules/certbot-dns-inwx/default.nix new file mode 100644 index 000000000000..7c24a042c95c --- /dev/null +++ b/pkgs/development/python-modules/certbot-dns-inwx/default.nix @@ -0,0 +1,33 @@ +{ 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 ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 16b408ab0cbb..86e4e6944063 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1691,6 +1691,8 @@ in { certbot-dns-cloudflare = callPackage ../development/python-modules/certbot-dns-cloudflare { }; + certbot-dns-inwx = callPackage ../development/python-modules/certbot-dns-inwx { }; + certbot-dns-rfc2136 = callPackage ../development/python-modules/certbot-dns-rfc2136 { }; certbot-dns-google = callPackage ../development/python-modules/certbot-dns-google { };