From 3f33d0eedccca23479aa820c7807b7f15d493c25 Mon Sep 17 00:00:00 2001 From: K900 Date: Wed, 5 Feb 2025 12:01:10 +0300 Subject: [PATCH] python312Packages.tree-sitter: disable tests on aarch64 ??? --- pkgs/development/python-modules/tree-sitter/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/tree-sitter/default.nix b/pkgs/development/python-modules/tree-sitter/default.nix index 92f7b143578ec..3ec5c58411e6f 100644 --- a/pkgs/development/python-modules/tree-sitter/default.nix +++ b/pkgs/development/python-modules/tree-sitter/default.nix @@ -1,5 +1,6 @@ { lib, + stdenv, buildPythonPackage, fetchFromGitHub, pytestCheckHook, @@ -50,6 +51,9 @@ buildPythonPackage rec { "test_dot_graphs" ]; + # Segfaults explosively for some reason, but dependents seem to work? + doCheck = !stdenv.hostPlatform.isAarch64; + meta = with lib; { description = "Python bindings to the Tree-sitter parsing library"; homepage = "https://github.com/tree-sitter/py-tree-sitter";