nixpkgs/pkgs/development/python-modules/junitparser/default.nix
Martin Weinelt dacf175e96 python3Packages.junitparser: 3.2.0 -> 4.0.2
This commit was automatically generated using update-python-libraries.
2026-02-01 17:19:22 +01:00

38 lines
733 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
glibcLocales,
lxml,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "junitparser";
version = "4.0.2";
pyproject = true;
src = fetchFromGitHub {
owner = "weiwei";
repo = "junitparser";
tag = version;
hash = "sha256-+81n5xW9SEE+NZbYKxXu6xupoq4/haUZokVardh43iM=";
};
build-system = [ setuptools ];
nativeCheckInputs = [
pytestCheckHook
lxml
glibcLocales
];
meta = {
description = "Manipulates JUnit/xUnit Result XML files";
mainProgram = "junitparser";
license = lib.licenses.asl20;
homepage = "https://github.com/weiwei/junitparser";
maintainers = with lib.maintainers; [ multun ];
};
}