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