summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--pkgs/top-level/python-packages.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index cc525cb1c9f8..298c8145b0ee 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -17349,6 +17349,29 @@ in {
     };
   };
 
+  unittest-xml-reporting = buildPythonPackage rec {
+    name = "${pname}-${version}";
+    pname = "unittest-xml-reporting";
+    version = "2.1.1";
+
+    propagatedBuildInputs = with self; [six];
+
+    # The tarball from Pypi doesn't actually contain the unit tests
+    doCheck = false;
+
+    src = fetchPypi {
+      inherit pname version;
+      sha256 = "1jwkqx5gfphkymp3xwqvlb94ng22gpbqh36vbbnsrpk1a0mammm6";
+    };
+    meta = with stdenv.lib; {
+      homepage = https://github.com/xmlrunner/unittest-xml-reporting/tree/master/;
+      description = "A unittest runner that can save test results to XML files";
+      license = licenses.bsd2;
+      maintainers = with maintainers; [ rprospero ];
+    };
+  };
+
+
   uritemplate_py = buildPythonPackage rec {
     name = "uritemplate.py-${version}";
     version = "0.3.0";