python312Packages.smtpdfix: disable blocking test

This commit is contained in:
Martin Weinelt 2024-02-14 17:08:28 +01:00
parent 36ee104022
commit 57be4965f4
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchPypi
, pythonAtLeast
, setuptools
, pytest
, portpicker
@ -36,6 +37,11 @@ buildPythonPackage rec {
pytest-asyncio
];
disabledTests = lib.optionals (pythonAtLeast "3.12") [
# https://github.com/bebleo/smtpdfix/issues/335
"test_missing_certs"
];
meta = with lib; {
description = "An SMTP server for use as a pytest fixture for testing";
homepage = "https://github.com/bebleo/smtpdfix";