From fea1cb70a87c1e2b4e5240406f2cba222647d53e Mon Sep 17 00:00:00 2001 From: wrvsrx Date: Sun, 22 Jun 2025 16:28:45 +0800 Subject: [PATCH] python3Packages.junitparser: 2.8.0 -> 3.2.0 --- .../python-modules/junitparser/default.nix | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/pkgs/development/python-modules/junitparser/default.nix b/pkgs/development/python-modules/junitparser/default.nix index 8833775b8074..efb5b0bae7a3 100644 --- a/pkgs/development/python-modules/junitparser/default.nix +++ b/pkgs/development/python-modules/junitparser/default.nix @@ -2,34 +2,29 @@ lib, buildPythonPackage, fetchFromGitHub, - future, glibcLocales, lxml, - unittestCheckHook, + pytestCheckHook, }: buildPythonPackage rec { pname = "junitparser"; - version = "2.8.0"; + version = "3.2.0"; format = "setuptools"; src = fetchFromGitHub { owner = "weiwei"; repo = "junitparser"; rev = version; - hash = "sha256-rhDP05GSWT4K6Z2ip8C9+e3WbvBJOwP0vctvANBs7cw="; + hash = "sha256-efP9t5eto6bcjk33wpJmunLlPH7wUwAa6/OjjYG/fgM="; }; - propagatedBuildInputs = [ future ]; - nativeCheckInputs = [ - unittestCheckHook + pytestCheckHook lxml glibcLocales ]; - unittestFlagsArray = [ "-v" ]; - meta = with lib; { description = "Manipulates JUnit/xUnit Result XML files"; mainProgram = "junitparser";