From fd48e3904253eeed351d19e08d42505bf43eac6b Mon Sep 17 00:00:00 2001 From: Sarah Clark Date: Sat, 29 Nov 2025 12:09:22 -0800 Subject: [PATCH] python3Packages.mistral-common: disable sentencepiece dependency on Darwin See https://github.com/NixOS/nixpkgs/issues/466092 --- .../python-modules/mistral-common/default.nix | 20 +++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/mistral-common/default.nix b/pkgs/development/python-modules/mistral-common/default.nix index 08f977f055a9..ca5151b94c62 100644 --- a/pkgs/development/python-modules/mistral-common/default.nix +++ b/pkgs/development/python-modules/mistral-common/default.nix @@ -1,5 +1,6 @@ { lib, + stdenv, buildPythonPackage, fetchFromGitHub, @@ -61,7 +62,8 @@ buildPythonPackage rec { opencv = [ opencv-python-headless ]; - sentencepiece = [ + # Broken on Darwin. See https://github.com/NixOS/nixpkgs/issues/466092 + sentencepiece = lib.optionals (!stdenv.hostPlatform.isDarwin) [ sentencepiece ]; soundfile = [ @@ -97,7 +99,7 @@ buildPythonPackage rec { soxr uvicorn ] - ++ lib.flatten (lib.attrValues optional-dependencies); + ++ lib.concatAttrValues optional-dependencies; disabledTests = [ # Require internet @@ -112,6 +114,20 @@ buildPythonPackage rec { "test_openai_chat_fields" ]; + # Requires sentencepiece which segfaults when initialized on Darwin + # See https://github.com/NixOS/nixpkgs/issues/466092 + disabledTestPaths = lib.optionals stdenv.hostPlatform.isDarwin [ + "tests/experimental/test_app.py" + "tests/experimental/test_tools.py" + "tests/test_fim_tokenizer.py" + "tests/test_integration_samples.py" + "tests/test_mistral_tokenizer.py" + "tests/test_tokenize_v1.py" + "tests/test_tokenize_v2.py" + "tests/test_tokenize_v3.py" + "tests/test_tokenizer_v7.py" + ]; + meta = { description = "Tools to help you work with Mistral models"; homepage = "https://github.com/mistralai/mistral-common";