python313Packages.readabilipy: disable failing tests (#431705)

authored by Fabian Affolter and committed by GitHub bd74a8e8 81ef6422

+15 -3
+15 -3
pkgs/development/python-modules/readabilipy/default.nix
··· 44 44 dontNpmBuild = true; 45 45 }; 46 46 47 - nativeBuildInputs = [ setuptools ]; 47 + build-system = [ setuptools ]; 48 48 49 - propagatedBuildInputs = [ 49 + dependencies = [ 50 50 beautifulsoup4 51 51 html5lib 52 52 lxml ··· 75 75 "tests/test_benchmarking.py" 76 76 ]; 77 77 78 + disabledTests = [ 79 + # IndexError: list index out of range 80 + "test_html_blacklist" 81 + "test_prune_div_with_one_empty_span" 82 + "test_prune_div_with_one_whitespace_paragraph" 83 + "test_empty_page" 84 + "test_contentless_page" 85 + "test_extract_title" 86 + "test_iframe_containing_tags" 87 + "test_iframe_with_source" 88 + ]; 89 + 78 90 passthru = { 79 91 tests.version = testers.testVersion { 80 92 package = readabilipy; ··· 85 97 86 98 meta = with lib; { 87 99 description = "HTML content extractor"; 88 - mainProgram = "readabilipy"; 89 100 homepage = "https://github.com/alan-turing-institute/ReadabiliPy"; 90 101 changelog = "https://github.com/alan-turing-institute/ReadabiliPy/blob/${src.tag}/CHANGELOG.md"; 91 102 license = licenses.mit; 92 103 maintainers = with maintainers; [ fab ]; 104 + mainProgram = "readabilipy"; 93 105 }; 94 106 }