python3Packages.junitparser: 2.8.0 -> 3.2.0

This commit is contained in:
wrvsrx
2025-06-22 16:28:45 +08:00
parent 08f22084e6
commit fea1cb70a8

View File

@@ -2,34 +2,29 @@
lib, lib,
buildPythonPackage, buildPythonPackage,
fetchFromGitHub, fetchFromGitHub,
future,
glibcLocales, glibcLocales,
lxml, lxml,
unittestCheckHook, pytestCheckHook,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "junitparser"; pname = "junitparser";
version = "2.8.0"; version = "3.2.0";
format = "setuptools"; format = "setuptools";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "weiwei"; owner = "weiwei";
repo = "junitparser"; repo = "junitparser";
rev = version; rev = version;
hash = "sha256-rhDP05GSWT4K6Z2ip8C9+e3WbvBJOwP0vctvANBs7cw="; hash = "sha256-efP9t5eto6bcjk33wpJmunLlPH7wUwAa6/OjjYG/fgM=";
}; };
propagatedBuildInputs = [ future ];
nativeCheckInputs = [ nativeCheckInputs = [
unittestCheckHook pytestCheckHook
lxml lxml
glibcLocales glibcLocales
]; ];
unittestFlagsArray = [ "-v" ];
meta = with lib; { meta = with lib; {
description = "Manipulates JUnit/xUnit Result XML files"; description = "Manipulates JUnit/xUnit Result XML files";
mainProgram = "junitparser"; mainProgram = "junitparser";