From eb9e26b2dcf8ed273452663ce8f7c83873a6df8a Mon Sep 17 00:00:00 2001 From: Sarah Clark Date: Sat, 24 May 2025 12:29:59 -0700 Subject: [PATCH] python3Packages.typedunits: Disable fractional rounding test on aarch64 see https://github.com/quantumlib/TypedUnits/issues/14 --- pkgs/development/python-modules/typedunits/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/typedunits/default.nix b/pkgs/development/python-modules/typedunits/default.nix index 3f0ed6e1d4ac..941db335c3e0 100644 --- a/pkgs/development/python-modules/typedunits/default.nix +++ b/pkgs/development/python-modules/typedunits/default.nix @@ -42,7 +42,7 @@ buildPythonPackage { pytestCheckHook ]; - disabledTests = lib.optionals stdenv.hostPlatform.isDarwin [ + disabledTests = lib.optionals stdenv.hostPlatform.isAarch [ # Rounding differences "test_float_to_twelths_frac" ];