We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c1216a4 + 57be496 commit 8eecc33Copy full SHA for 8eecc33
1 file changed
pkgs/development/python-modules/smtpdfix/default.nix
@@ -1,6 +1,7 @@
1
{ lib
2
, buildPythonPackage
3
, fetchPypi
4
+, pythonAtLeast
5
, setuptools
6
, pytest
7
, portpicker
@@ -36,6 +37,11 @@ buildPythonPackage rec {
36
37
pytest-asyncio
38
];
39
40
+ disabledTests = lib.optionals (pythonAtLeast "3.12") [
41
+ # https://github.com/bebleo/smtpdfix/issues/335
42
+ "test_missing_certs"
43
+ ];
44
+
45
meta = with lib; {
46
description = "An SMTP server for use as a pytest fixture for testing";
47
homepage = "https://github.com/bebleo/smtpdfix";
0 commit comments