From dd681c90cff9917cb5f40c21afe74009510bc840 Mon Sep 17 00:00:00 2001 From: Malo Bourgon Date: Tue, 13 May 2025 00:03:09 -0700 Subject: [PATCH] python312Packages.pylibjpeg-openjpeg: unbreak on `aarch64-linux` --- .../python-modules/pylibjpeg-openjpeg/default.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/pylibjpeg-openjpeg/default.nix b/pkgs/development/python-modules/pylibjpeg-openjpeg/default.nix index ddd616eb0bfe..d4de581a112f 100644 --- a/pkgs/development/python-modules/pylibjpeg-openjpeg/default.nix +++ b/pkgs/development/python-modules/pylibjpeg-openjpeg/default.nix @@ -72,9 +72,7 @@ buildPythonPackage rec { changelog = "https://github.com/pydicom/pylibjpeg-openjpeg/releases/tag/v${version}"; license = [ lib.licenses.mit ]; maintainers = with lib.maintainers; [ bcdarwin ]; - # x86-linux: test_encode.py::TestEncodeBuffer failures - # darwin: numerous test failures, seemingly due to issues setting up test data - broken = - (stdenv.hostPlatform.isAarch64 && stdenv.hostPlatform.isLinux) || stdenv.hostPlatform.isDarwin; + # darwin: numerous test failures, test dependency pydicom is marked as unsupported + broken = stdenv.hostPlatform.isDarwin; }; }