Skip to content

Commit

Permalink
python312Packages.readabilipy: init at 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fabaff committed Mar 8, 2024
1 parent 1dc4d4a commit 572619f
Show file tree
Hide file tree
Showing 2 changed files with 68 additions and 0 deletions.
66 changes: 66 additions & 0 deletions pkgs/development/python-modules/readabilipy/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 { };
Expand Down

0 comments on commit 572619f

Please sign in to comment.