From a148f6439794c18fe26402a1d519096749233e72 Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Thu, 5 Feb 2026 00:36:00 +0200 Subject: [PATCH 1/2] python3.pkgs.plopp: 25.11.0 -> 26.2.0 Diff: https://github.com/scipp/plopp/compare/25.11.0...26.2.0 --- pkgs/development/python-modules/plopp/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/plopp/default.nix b/pkgs/development/python-modules/plopp/default.nix index 0971ed49002a..d9aa0d5e535e 100644 --- a/pkgs/development/python-modules/plopp/default.nix +++ b/pkgs/development/python-modules/plopp/default.nix @@ -36,14 +36,14 @@ buildPythonPackage (finalAttrs: { pname = "plopp"; - version = "25.11.0"; + version = "26.2.0"; pyproject = true; src = fetchFromGitHub { owner = "scipp"; repo = "plopp"; tag = finalAttrs.version; - hash = "sha256-3vmHRPjv7iUd6ky7XzfdChpAI++ELh6vwmtELK7dwaE="; + hash = "sha256-JYgha+gmp9Ht6Ly9+i6dT+jdiDgsAEH5qH5MJ4n9LR8="; }; build-system = [ @@ -77,6 +77,7 @@ buildPythonPackage (finalAttrs: { disabledTests = lib.optionals (pythonAtLeast "3.14") [ # RuntimeError: There is no current event loop in thread 'MainThread' "test_move_cut" + "test_value_cuts" ]; env = { From 601259e63529006aa850fc13ea8e17c0c7a5de57 Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Sat, 7 Feb 2026 19:42:29 +0200 Subject: [PATCH 2/2] python31{3,4}.pkgs.scipp: enable on Darwin The error quoted is gone now. --- pkgs/development/python-modules/scipp/default.nix | 6 ------ 1 file changed, 6 deletions(-) diff --git a/pkgs/development/python-modules/scipp/default.nix b/pkgs/development/python-modules/scipp/default.nix index e02428a1b997..c55b1938bc5a 100644 --- a/pkgs/development/python-modules/scipp/default.nix +++ b/pkgs/development/python-modules/scipp/default.nix @@ -103,11 +103,5 @@ 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; }; }