From 5523622f8c66fe3911c6e4d6052abc29d7702553 Mon Sep 17 00:00:00 2001 From: Sarah Clark Date: Mon, 26 Jan 2026 09:21:25 -0800 Subject: [PATCH] python314Packages.trafilatura: disable flaky test on python 3.14 --- pkgs/development/python-modules/trafilatura/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/python-modules/trafilatura/default.nix b/pkgs/development/python-modules/trafilatura/default.nix index 57d236ffeb03..d730a54ab051 100644 --- a/pkgs/development/python-modules/trafilatura/default.nix +++ b/pkgs/development/python-modules/trafilatura/default.nix @@ -75,6 +75,10 @@ buildPythonPackage rec { "test_queue" "test_redirection" "test_whole" + + # AssertionError: assert ['deflate', 'gzip', 'zstd'] == ['deflate', 'gzip'] + # https://github.com/adbar/trafilatura/issues/823 + "test_config" ]; pythonImportsCheck = [ "trafilatura" ]; @@ -83,6 +87,7 @@ buildPythonPackage rec { description = "Python package and command-line tool designed to gather text on the Web"; homepage = "https://trafilatura.readthedocs.io"; changelog = "https://github.com/adbar/trafilatura/blob/v${version}/HISTORY.md"; + downloadPage = "https://github.com/adbar/trafilatura"; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ jokatzke ]; mainProgram = "trafilatura";