2018-03-22 17:44:27 +00:00
|
|
|
{lib, fetchPypi, buildPythonPackage, six}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "unittest-xml-reporting";
|
2019-05-02 12:24:52 +01:00
|
|
|
version = "2.5.1";
|
2018-03-22 17:44:27 +00:00
|
|
|
|
|
|
|
propagatedBuildInputs = [six];
|
|
|
|
|
|
|
|
# The tarball from Pypi doesn't actually contain the unit tests
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-05-02 12:24:52 +01:00
|
|
|
sha256 = "0v6xcs8nx82yw037h296zk0vz5ka4idm4xdpxkcm4h4fnpj8428l";
|
2018-03-22 17:44:27 +00:00
|
|
|
};
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = https://github.com/xmlrunner/unittest-xml-reporting/tree/master/;
|
|
|
|
description = "A unittest runner that can save test results to XML files";
|
|
|
|
license = lib.licenses.bsd2;
|
|
|
|
maintainers = with lib.maintainers; [ rprospero ];
|
|
|
|
};
|
|
|
|
}
|