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