nixos/alsa: reintroduce hardware.alsa.enablePersistence (#373529)
[NixPkgs.git] / pkgs / development / python-modules / certbot-dns-inwx / default.nix
blob81b20f23ff79b6ad9a80b4c6e649551767bf0b7b
2   lib,
3   fetchPypi,
4   buildPythonPackage,
5   acme,
6   certbot,
7 }:
9 buildPythonPackage rec {
10   pname = "certbot-dns-inwx";
11   version = "2.2.0";
12   format = "setuptools";
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-v03QBHsxhl6R8YcwWIKD+pf4APy9S2vFcQe3ZEc6AjI=";
17   };
19   propagatedBuildInputs = [
20     acme
21     certbot
22   ];
24   # Doesn't have any tests
25   doCheck = false;
27   pytestImportsCheck = [ "certbot_dns_inwx" ];
29   meta = with lib; {
30     description = "INWX DNS Authenticator plugin for Certbot";
31     homepage = "https://github.com/oGGy990/certbot-dns-inwx";
32     license = with licenses; [
33       asl20
34       mit
35     ];
36     maintainers = with maintainers; [ onny ];
37   };