mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-05 11:44:02 +00:00
02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
35 lines
671 B
Nix
35 lines
671 B
Nix
{ lib
|
|
, fetchPypi
|
|
, buildPythonPackage
|
|
, acme
|
|
, certbot
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "certbot-dns-inwx";
|
|
version = "2.2.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-v03QBHsxhl6R8YcwWIKD+pf4APy9S2vFcQe3ZEc6AjI=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|