1{lib, fetchPypi, buildPythonPackage, six}:
2
3buildPythonPackage rec {
4 pname = "unittest-xml-reporting";
5 version = "2.2.0";
6
7 propagatedBuildInputs = [six];
8
9 # The tarball from Pypi doesn't actually contain the unit tests
10 doCheck = false;
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "3ba27af788bddb4403ee72561bfd3df2deb27a926a5426aa9beeb354c59b9c44";
15 };
16 meta = with lib; {
17 homepage = https://github.com/xmlrunner/unittest-xml-reporting/tree/master/;
18 description = "A unittest runner that can save test results to XML files";
19 license = lib.licenses.bsd2;
20 maintainers = with lib.maintainers; [ rprospero ];
21 };
22}