From f79a8405b424bca432896026af76b0dcb823a54a Mon Sep 17 00:00:00 2001 From: Thomas Butter Date: Fri, 8 May 2026 06:33:35 +0000 Subject: [PATCH] taskhound: 1.0.0 -> 1.1.5 --- pkgs/by-name/ta/taskhound/package.nix | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ta/taskhound/package.nix b/pkgs/by-name/ta/taskhound/package.nix index 54239fc07df8..1df54f53b368 100644 --- a/pkgs/by-name/ta/taskhound/package.nix +++ b/pkgs/by-name/ta/taskhound/package.nix @@ -2,18 +2,19 @@ lib, python3, fetchFromGitHub, + writableTmpDirAsHomeHook, }: python3.pkgs.buildPythonApplication (finalAttrs: { pname = "taskhound"; - version = "1.0.0"; + version = "1.1.5"; pyproject = true; src = fetchFromGitHub { owner = "1r0BIT"; repo = "TaskHound"; tag = "v${finalAttrs.version}"; - hash = "sha256-qQ1OpJCgMcRKGkZCRjLiUO+u4SSIA/qExzq2K7m7BD8="; + hash = "sha256-OVCHdhfMkeFUgdvVY6uMBqWpJNIHE4cHFzy1XstvnyU="; }; build-system = with python3.pkgs; [ setuptools ]; @@ -26,11 +27,20 @@ python3.pkgs.buildPythonApplication (finalAttrs: { neo4j pycryptodome requests + rich + rich-argparse ]; nativeCheckInputs = with python3.pkgs; [ pytest-cov-stub pytestCheckHook + writableTmpDirAsHomeHook + ]; + + disabledTests = [ + # Flaky timing-dependent test + "test_rate_limit_accuracy" + "test_parallel_mode" ]; pythonImportsCheck = [ "taskhound" ];