Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / junitparser / default.nix
blob2dbd902efeefaa021dde37ba693a3c5938799ed8
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , future
5 , glibcLocales
6 , lxml
7 , unittestCheckHook
8 }:
10 buildPythonPackage rec {
11   pname = "junitparser";
12   version = "2.8.0";
14   src = fetchFromGitHub {
15     owner = "weiwei";
16     repo = pname;
17     rev = version;
18     hash = "sha256-rhDP05GSWT4K6Z2ip8C9+e3WbvBJOwP0vctvANBs7cw=";
19   };
21   propagatedBuildInputs = [ future ];
23   nativeCheckInputs = [ unittestCheckHook lxml glibcLocales ];
25   unittestFlagsArray = [ "-v" ];
27   meta = with lib; {
28     description = "Manipulates JUnit/xUnit Result XML files";
29     license = licenses.asl20;
30     homepage = "https://github.com/weiwei/junitparser";
31     maintainers = with maintainers; [ multun ];
32   };