python3.pkgs.genshi: fix build

This commit is contained in:
Frederik Rietdijk 2020-11-05 14:19:23 +01:00 committed by Jonathan Ringer
parent 1849bc57be
commit 0259315d05

View file

@ -2,6 +2,7 @@
, buildPythonPackage
, fetchPypi
, setuptools
, six
}:
buildPythonPackage rec {
@ -17,7 +18,9 @@ buildPythonPackage rec {
# FAIL: test_sanitize_remove_src_javascript (genshi.filters.tests.html.HTMLSanitizerTestCase)
doCheck = false;
buildInputs = [ setuptools ];
propagatedBuildInputs = [
setuptools six
];
meta = with stdenv.lib; {
description = "Python components for parsing HTML, XML and other textual content";