From 9632df5681e5a9472271e18bd47c50d7ab62cfa3 Mon Sep 17 00:00:00 2001 From: Ben Siraphob Date: Wed, 29 Apr 2026 11:05:40 -0700 Subject: [PATCH 1/2] python3Packages.mirakuru: increase darwin test timeout --- pkgs/development/python-modules/mirakuru/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/python-modules/mirakuru/default.nix b/pkgs/development/python-modules/mirakuru/default.nix index dc4aeeb39041..59c1960e1079 100644 --- a/pkgs/development/python-modules/mirakuru/default.nix +++ b/pkgs/development/python-modules/mirakuru/default.nix @@ -25,6 +25,11 @@ buildPythonPackage rec { hash = "sha256-3WyjvHxr+6kG+cLSCEZkHoA70mSoT66ubmp0W9g2yJM="; }; + postPatch = lib.optionalString stdenv.hostPlatform.isDarwin '' + substituteInPlace tests/executors/test_output_executor_regression_issue_98.py \ + --replace-fail "timeout=15," "timeout=60," + ''; + build-system = [ setuptools ]; dependencies = [ psutil ]; From b30f3da85530496679801bd0a1fc969e5210290f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Mon, 18 May 2026 09:02:08 +0200 Subject: [PATCH 2/2] python3Packages.mirakuru: increase test timeout for everyone Co-authored-by: Sandro --- pkgs/development/python-modules/mirakuru/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/mirakuru/default.nix b/pkgs/development/python-modules/mirakuru/default.nix index 59c1960e1079..e7c105adca1b 100644 --- a/pkgs/development/python-modules/mirakuru/default.nix +++ b/pkgs/development/python-modules/mirakuru/default.nix @@ -25,7 +25,7 @@ buildPythonPackage rec { hash = "sha256-3WyjvHxr+6kG+cLSCEZkHoA70mSoT66ubmp0W9g2yJM="; }; - postPatch = lib.optionalString stdenv.hostPlatform.isDarwin '' + postPatch = '' substituteInPlace tests/executors/test_output_executor_regression_issue_98.py \ --replace-fail "timeout=15," "timeout=60," '';