python3Packages.unittest-xml-reporting: add missing dependency

This commit is contained in:
Jonathan Ringer
2022-03-14 00:29:11 +01:00
committed by Martin Weinelt
parent 2ffbe5d84b
commit 66fc60c711
@@ -1,11 +1,14 @@
{lib, fetchPypi, buildPythonPackage, isPy27, six}:
{lib, fetchPypi, buildPythonPackage, isPy27, six, lxml }:
buildPythonPackage rec {
pname = "unittest-xml-reporting";
version = "3.2.0";
disabled = isPy27;
propagatedBuildInputs = [six];
propagatedBuildInputs = [
lxml
six
];
# The tarball from Pypi doesn't actually contain the unit tests
doCheck = false;