python312Packages.certbot: ignore DeprecationWarning

This commit is contained in:
Fabian Affolter
2024-10-13 11:09:56 +02:00
committed by Martin Weinelt
parent fea20137cf
commit 6f3479fc5a
@@ -35,9 +35,9 @@ buildPythonPackage rec {
sourceRoot = "${src.name}/${pname}";
nativeBuildInputs = [ setuptools ];
build-system = [ setuptools ];
propagatedBuildInputs = [
dependencies = [
configargparse
acme
configobj
@@ -61,7 +61,11 @@ buildPythonPackage rec {
pytest-xdist
];
pytestFlagsArray = [ "-o cache_dir=$(mktemp -d)" ];
pytestFlagsArray = [
"-o cache_dir=$(mktemp -d)"
"-W"
"ignore::DeprecationWarning"
];
makeWrapperArgs = [ "--prefix PATH : ${dialog}/bin" ];