python3Packages.beziers: fix darwin build

This commit is contained in:
Amadej Kastelic
2025-07-07 10:44:38 +02:00
parent 5e40f9bfee
commit e855ed38ea
@@ -1,12 +1,14 @@
{
lib,
stdenv,
buildPythonPackage,
fetchFromGitHub,
dotmap,
matplotlib,
pyclipper,
pytestCheckHook,
pythonImportsCheckHook,
setuptools,
unittestCheckHook,
gitUpdater,
}:
@@ -26,17 +28,25 @@ buildPythonPackage rec {
dependencies = [ pyclipper ];
preCheck = ''
# silence matplotlib warning
export MPLCONFIGDIR=$(mktemp -d)
'';
nativeCheckInputs = [
dotmap
matplotlib
unittestCheckHook
pytestCheckHook
pythonImportsCheckHook
];
unittestFlagsArray = [
"-s"
"test"
"-v"
disabledTests = lib.optionals stdenv.isDarwin [
# Fails on macOS with Trace/BPT trap: 5 - something to do with recursion depth
"test_cubic_cubic"
];
pythonImportsCheckFlags = [ "beziers" ];
passthru.updateScript = gitUpdater { rev-prefix = "v"; };
meta = {