From f1de359239b7a87e6069a3f8d3a487f807eba69f Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Thu, 19 Dec 2024 12:25:06 +0200 Subject: [PATCH] python312Packages.freud: disable test_docstring for all platforms --- pkgs/development/python-modules/freud/default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/freud/default.nix b/pkgs/development/python-modules/freud/default.nix index da4d966c8129..386eb8f9b012 100644 --- a/pkgs/development/python-modules/freud/default.nix +++ b/pkgs/development/python-modules/freud/default.nix @@ -73,8 +73,12 @@ buildPythonPackage rec { matplotlib sympy ]; - disabledTests = lib.optionals stdenv.hostPlatform.isAarch64 [ + disabledTests = [ # https://github.com/glotzerlab/freud/issues/961 + # + # For x86_64-linux, see: + # + # https://github.com/glotzerlab/freud/issues/961#issuecomment-2553344968 "test_docstring" ]; # On top of cd $out due to https://github.com/NixOS/nixpkgs/issues/255262 ,