Files
nixpkgs/pkgs/development/python-modules/junitparser/default.nix
2026-04-04 03:56:55 +00:00

39 lines
733 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
glibcLocales,
lxml,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "junitparser";
version = "5.0.0";
pyproject = true;
src = fetchFromGitHub {
owner = "weiwei";
repo = "junitparser";
tag = version;
hash = "sha256-I/bQQPT6b6PTZ9bIlWCQmN/gUWnVIO42xtJh/g7L79A=";
};
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 ];
};
}