From 008599f125422ca4f76818b60d3248bedcd24075 Mon Sep 17 00:00:00 2001 From: Dilip Date: Wed, 1 Jan 2025 18:39:02 +0530 Subject: [PATCH] python3Packages.textblob: disable tests --- pkgs/development/python-modules/textblob/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/textblob/default.nix b/pkgs/development/python-modules/textblob/default.nix index 08f42f0f1cec..5c7f8b4ff90e 100644 --- a/pkgs/development/python-modules/textblob/default.nix +++ b/pkgs/development/python-modules/textblob/default.nix @@ -21,7 +21,9 @@ buildPythonPackage rec { dependencies = [ nltk ]; - doCheck = true; + # Test process requires pytestCheckHook and network access to download wordnet + # Error: 'wordnet not found' 'Attempted to load corpora/wordnet' + doCheck = false; pythonImportsCheck = [ "textblob" ];