Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / junitparser / default.nix
blob490f919a712a197627154f8a6dc3b6c27bb99970
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";
13   format = "setuptools";
15   src = fetchFromGitHub {
16     owner = "weiwei";
17     repo = pname;
18     rev = version;
19     hash = "sha256-rhDP05GSWT4K6Z2ip8C9+e3WbvBJOwP0vctvANBs7cw=";
20   };
22   propagatedBuildInputs = [ future ];
24   nativeCheckInputs = [ unittestCheckHook lxml glibcLocales ];
26   unittestFlagsArray = [ "-v" ];
28   meta = with lib; {
29     description = "Manipulates JUnit/xUnit Result XML files";
30     mainProgram = "junitparser";
31     license = licenses.asl20;
32     homepage = "https://github.com/weiwei/junitparser";
33     maintainers = with maintainers; [ multun ];
34   };