berkeleydb: skip tests on macOS to fix build (#343230)

This commit is contained in:
Emily
2024-10-01 00:17:09 +01:00
committed by GitHub
@@ -1,5 +1,6 @@
{
lib,
stdenv,
buildPythonPackage,
fetchPypi,
setuptools,
@@ -19,6 +20,10 @@ buildPythonPackage rec {
build-system = [ setuptools ];
# Every test currently fails with:
# berkeleydb.db.DBRunRecoveryError: (-30973, 'BDB0087 DB_RUNRECOVERY: Fatal error, run database recovery -- BDB1546 unable to join the environment')
doCheck = !stdenv.isDarwin;
checkPhase = ''
${python.interpreter} test.py
'';