mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-08 06:24:08 +01:00
38 lines
733 B
Nix
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 ];
|
|
};
|
|
}
|