2018-10-16 22:18:24 +02:00
|
|
|
{ stdenv
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, setuptools
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "Genshi";
|
2020-11-04 15:04:22 +01:00
|
|
|
version = "0.7.4";
|
2018-10-16 22:18:24 +02:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-11-04 15:04:22 +01:00
|
|
|
sha256 = "d92ef3bb34474a38566f7e44e570ff3067c7f7c126670c79f660661badf8eddb";
|
2018-10-16 22:18:24 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
# FAIL: test_sanitize_remove_script_elem (genshi.filters.tests.html.HTMLSanitizerTestCase)
|
|
|
|
# FAIL: test_sanitize_remove_src_javascript (genshi.filters.tests.html.HTMLSanitizerTestCase)
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
buildInputs = [ setuptools ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Python components for parsing HTML, XML and other textual content";
|
|
|
|
longDescription = ''
|
|
|
|
Python library that provides an integrated set of components for
|
|
|
|
parsing, generating, and processing HTML, XML or other textual
|
|
|
|
content for output generation on the web.
|
|
|
|
'';
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://genshi.edgewall.org/";
|
2018-10-16 22:18:24 +02:00
|
|
|
license = licenses.bsd0;
|
|
|
|
};
|
|
|
|
}
|