python3Packages.unittest-xml-reporting: add missing dependency
This commit is contained in:
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;
|
||||
|
||||
Reference in New Issue
Block a user