diff --git a/pkgs/development/python-modules/langchain-ollama/default.nix b/pkgs/development/python-modules/langchain-ollama/default.nix index 104796cce3ea..11ec12bb1f9c 100644 --- a/pkgs/development/python-modules/langchain-ollama/default.nix +++ b/pkgs/development/python-modules/langchain-ollama/default.nix @@ -2,7 +2,6 @@ lib, buildPythonPackage, fetchFromGitHub, - stdenv, # build-system hatchling, @@ -57,8 +56,9 @@ buildPythonPackage (finalAttrs: { enabledTestPaths = [ "tests/unit_tests" ]; - disabledTests = lib.optionals stdenv.hostPlatform.isDarwin [ - # Darwin prevents the expected shell from spawning to run this + disabledTests = [ + # The expected shell can't spawn + # test_standard_params_model_override - AssertionError: ls_model_name did not reflect the per-call `model` override...ZZ "test_standard_params_model_override" ];