linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / unittest-xml-reporting / default.nix
blobc8d1edc421094fb6ee84ec64b916b8a3958ccdae
1 {lib, fetchPypi, buildPythonPackage, isPy27, six}:
3 buildPythonPackage rec {
4   pname = "unittest-xml-reporting";
5   version = "3.0.4";
6   disabled = isPy27;
8   propagatedBuildInputs = [six];
10   # The tarball from Pypi doesn't actually contain the unit tests
11   doCheck = false;
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "984cebba69e889401bfe3adb9088ca376b3a1f923f0590d005126c1bffd1a695";
16   };
17   meta = with lib; {
18     homepage = "https://github.com/xmlrunner/unittest-xml-reporting/tree/master/";
19     description = "A unittest runner that can save test results to XML files";
20     license = lib.licenses.bsd2;
21     maintainers = with lib.maintainers; [ rprospero ];
22   };