python3Packages.simple-pid: disable tests on darwin

Too flaky, even on idle builders.
This commit is contained in:
Martin Weinelt 2026-05-18 00:57:10 +02:00
commit b4fd9956eb
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -1,5 +1,6 @@
{
lib,
stdenv,
buildPythonPackage,
fetchFromGitHub,
setuptools,
@ -26,6 +27,8 @@ buildPythonPackage (finalAttrs: {
"simple_pid"
];
doCheck = !stdenv.isDarwin;
nativeCheckInputs = [
pytestCheckHook
];