python312Packages.jaraco-functools: disable failing test on darwin

This commit is contained in:
Martin Weinelt
2024-10-24 04:30:49 +02:00
parent b45fd290ad
commit 1e77fc3e8a
@@ -1,5 +1,6 @@
{
lib,
stdenv,
buildPythonPackage,
fetchPypi,
jaraco-classes,
@@ -35,6 +36,9 @@ buildPythonPackage rec {
pytestCheckHook
];
# test is flaky on darwin
disabledTests = if stdenv.isDarwin then [ "test_function_throttled" ] else null;
pythonNamespaces = [ "jaraco" ];
pythonImportsCheck = [ "jaraco.functools" ];