blob: e97b238ac599b899d66a9e9d5fe8ab550a690778 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
{ 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";
mainProgram = "readabilipy";
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 ];
};
}
|