python312Packages.readabilipy: init at 0.2.0

HTML content extractor

https://github.com/alan-turing-institute/ReadabiliPy
This commit is contained in:
Fabian Affolter 2024-03-08 18:35:34 +01:00
parent 1dc4d4a8c6
commit 572619fa62
2 changed files with 68 additions and 0 deletions

View File

@ -0,0 +1,66 @@
{ lib
, beautifulsoup4
, buildPythonPackage
, fetchFromGitHub
, html5lib
, lxml
, pytestCheckHook
, pythonOlder
, regex
, setuptools
}:
buildPythonPackage rec {
pname = "readabilipy";
version = "0.2.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "alan-turing-institute";
repo = "ReadabiliPy";
rev = "refs/tags/v${version}";
hash = "sha256-XrmdQjLFYdadWeO5DoKAQeEdta+6T6BqfvGlDkzLMyM=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
beautifulsoup4
html5lib
lxml
regex
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"readabilipy"
];
disabledTests = [
# AssertionError
"test_extract_simple_article_with_readability_js"
"test_extract_article_from_page_with_readability_js"
"test_plain_element_with_comments"
"test_content_digest_on_filled_and_empty_elements"
];
disabledTestPaths = [
# Exclude benchmarks
"tests/test_benchmarking.py"
];
meta = with lib; {
description = "HTML content extractor";
homepage = "https://github.com/alan-turing-institute/ReadabiliPy";
changelog = "https://github.com/alan-turing-institute/ReadabiliPy/blob/${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}

View File

@ -12716,6 +12716,8 @@ self: super: with self; {
readability-lxml = callPackage ../development/python-modules/readability-lxml { };
readabilipy = callPackage ../development/python-modules/readabilipy { };
readchar = callPackage ../development/python-modules/readchar { };
readlike = callPackage ../development/python-modules/readlike { };