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,
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";