diff --git a/pkgs/development/python-modules/opensfm/default.nix b/pkgs/development/python-modules/opensfm/default.nix index 7ba20688f3c4..c1b4583a80c7 100644 --- a/pkgs/development/python-modules/opensfm/default.nix +++ b/pkgs/development/python-modules/opensfm/default.nix @@ -3,6 +3,7 @@ stdenv, buildPythonPackage, fetchFromGitHub, + pythonAtLeast, # build-system ninja, @@ -151,6 +152,11 @@ buildPythonPackage (finalAttrs: { # flaky "test_match_candidates_from_metadata_bow" ] + ++ lib.optionals (pythonAtLeast "3.14") [ + # _pickle.UnpicklingError: global 'numpy._core.numeric._frombuffer' is forbidden + "test_run_all" + "test_shot_view_ref_count" + ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ "test_reconstruction_incremental" "test_reconstruction_triangulation"