ae4a1a485a
If a Python package does not come with either `format` or `pyproject` we consider it a setuptools build, that calls `setup.py` directly, which is deprecated. This change, as a first step, migrates a large chunk of these packages to set setuptools as their explicit format This is so we can unify the problem space for the next step of the migration.
40 lines
974 B
Nix
40 lines
974 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
setuptools,
|
|
six,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "genshi";
|
|
version = "0.7.9";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
pname = "Genshi";
|
|
inherit version;
|
|
hash = "sha256-x2FwqLLcGJROCRUQPChMuInfzuNODhQLozY8gPdUGtI=";
|
|
};
|
|
|
|
# FAIL: test_sanitize_remove_script_elem (genshi.filters.tests.html.HTMLSanitizerTestCase)
|
|
# FAIL: test_sanitize_remove_src_javascript (genshi.filters.tests.html.HTMLSanitizerTestCase)
|
|
doCheck = false;
|
|
|
|
propagatedBuildInputs = [
|
|
setuptools
|
|
six
|
|
];
|
|
|
|
meta = with 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.
|
|
'';
|
|
homepage = "https://genshi.edgewall.org/";
|
|
license = licenses.bsd0;
|
|
};
|
|
}
|