From 7cafaa01e97df9a4b0bed25a124ac446fb3e4a8b Mon Sep 17 00:00:00 2001 From: Sam Estep Date: Tue, 5 May 2026 18:34:55 -0400 Subject: [PATCH] python3Packages.symfc: fix Linux build failure --- pkgs/development/python-modules/symfc/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/symfc/default.nix b/pkgs/development/python-modules/symfc/default.nix index 079abdc095065..431790167b6c7 100644 --- a/pkgs/development/python-modules/symfc/default.nix +++ b/pkgs/development/python-modules/symfc/default.nix @@ -44,7 +44,7 @@ buildPythonPackage (finalAttrs: { pytestCheckHook ]; - disabledTests = lib.optionals (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86_64) [ + disabledTests = lib.optionals stdenv.hostPlatform.isx86_64 [ # assert (np.float64(0.5555555555555556) == 1.0 ± 1.0e-06 "test_fc_basis_set_o3" ];