silx: 2.1.1 -> 2.1.2 (#361612)
[NixPkgs.git] / pkgs / development / python-modules / certbot-dns-ovh / default.nix
blob6e976eccb8cea7002e07cf65c089ca51a6f4c01c
2   acme,
3   buildPythonPackage,
4   certbot,
5   dns-lexicon,
6   pytestCheckHook,
7   pythonOlder,
8   setuptools,
9 }:
11 buildPythonPackage rec {
12   pname = "certbot-dns-ovh";
13   pyproject = true;
15   inherit (certbot) src version;
16   disabled = pythonOlder "3.6";
18   sourceRoot = "${src.name}/certbot-dns-ovh";
20   build-system = [ setuptools ];
22   dependencies = [
23     acme
24     certbot
25     dns-lexicon
26   ];
28   nativeCheckInputs = [ pytestCheckHook ];
30   pytestFlagsArray = [
31     "-o cache_dir=$(mktemp -d)"
33     # Monitor https://github.com/certbot/certbot/issues/9606 for a solution
34     "-W"
35     "ignore::DeprecationWarning"
36   ];
38   meta = certbot.meta // {
39     description = "OVH DNS Authenticator plugin for Certbot";
40   };