Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / certbot-dns-inwx / default.nix
blob2874e9419e39ce7a42f1554dbc2518caf7fc5762
1 { lib
2 , fetchPypi
3 , buildPythonPackage
4 , acme
5 , certbot
6 }:
8 buildPythonPackage rec {
9   pname = "certbot-dns-inwx";
10   version = "2.2.0";
12   src = fetchPypi {
13     inherit pname version;
14     hash = "sha256-v03QBHsxhl6R8YcwWIKD+pf4APy9S2vFcQe3ZEc6AjI=";
15   };
17   propagatedBuildInputs = [
18     acme
19     certbot
20   ];
22   # Doesn't have any tests
23   doCheck = false;
25   pytestCheckHook = [ "certbot_dns_inwx" ];
27   meta = with lib; {
28     description = "INWX DNS Authenticator plugin for Certbot";
29     homepage = "https://github.com/oGGy990/certbot-dns-inwx";
30     license = with licenses; [ asl20 mit ];
31     maintainers = with maintainers; [ onny ];
32   };