587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
35 lines
748 B
Nix
35 lines
748 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, future
|
|
, glibcLocales
|
|
, lxml
|
|
, unittestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "junitparser";
|
|
version = "2.8.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "weiwei";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-rhDP05GSWT4K6Z2ip8C9+e3WbvBJOwP0vctvANBs7cw=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ future ];
|
|
|
|
nativeCheckInputs = [ unittestCheckHook lxml glibcLocales ];
|
|
|
|
unittestFlagsArray = [ "-v" ];
|
|
|
|
meta = with lib; {
|
|
description = "Manipulates JUnit/xUnit Result XML files";
|
|
mainProgram = "junitparser";
|
|
license = licenses.asl20;
|
|
homepage = "https://github.com/weiwei/junitparser";
|
|
maintainers = with maintainers; [ multun ];
|
|
};
|
|
}
|