ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / junitparser / default.nix
blob3a712251fc5d26b165909e36fc758bb48f59f48d
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , future
5 , python
6 }:
8 buildPythonPackage rec {
9   pname = "junitparser";
10   version = "1.4.1";
12   src = fetchFromGitHub {
13     owner = "gastlygem";
14     repo = pname;
15     rev = version;
16     sha256 = "16xwayr0rbp7xdg7bzmyf8s7al0dhkbmkcnil66ax7r8bznp5lmp";
17   };
19   propagatedBuildInputs = [ future ];
21   checkPhase = ''
22     ${python.interpreter} test.py
23   '';
25   meta = with lib; {
26     description = "A JUnit/xUnit Result XML Parser";
27     license = licenses.asl20;
28     homepage = "https://github.com/gastlygem/junitparser";
29     maintainers = with maintainers; [ multun ];
30   };