Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 22 lines 644 B view raw
1{lib, fetchPypi, buildPythonPackage, six}: 2 3buildPythonPackage rec { 4 pname = "unittest-xml-reporting"; 5 version = "2.5.1"; 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 = "0v6xcs8nx82yw037h296zk0vz5ka4idm4xdpxkcm4h4fnpj8428l"; 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}