From fc0fe857a1431b2cc8b0ab4a80d442f9eacf2da7 Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Sun, 25 May 2025 03:36:00 +0300 Subject: [PATCH] python313Packages.scipp: mark as broken on Darwin --- pkgs/development/python-modules/scipp/default.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkgs/development/python-modules/scipp/default.nix b/pkgs/development/python-modules/scipp/default.nix index 2980d84d4908..9cfb79fe914a 100644 --- a/pkgs/development/python-modules/scipp/default.nix +++ b/pkgs/development/python-modules/scipp/default.nix @@ -1,5 +1,6 @@ { lib, + stdenv, buildPythonPackage, fetchFromGitHub, @@ -103,5 +104,11 @@ buildPythonPackage rec { homepage = "https://scipp.github.io"; license = lib.licenses.bsd3; maintainers = with lib.maintainers; [ doronbehar ]; + # Got: + # + # error: a template argument list is expected after a name prefixed by the template keyword [-Wmissing-template-arg-list-after-template-kw] + # + # Needs debugging along with upstream. + broken = stdenv.hostPlatform.isDarwin; }; }