From 384dc3816109ba11708a1bb810a10a0f9c318d66 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Sat, 1 Nov 2025 15:37:00 -0700 Subject: [PATCH] python3Packages.textnets: skip test broken by igraph 1.0.0 --- pkgs/development/python-modules/textnets/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/python-modules/textnets/default.nix b/pkgs/development/python-modules/textnets/default.nix index 3456f1b11050..d36f9e66e6db 100644 --- a/pkgs/development/python-modules/textnets/default.nix +++ b/pkgs/development/python-modules/textnets/default.nix @@ -69,6 +69,11 @@ buildPythonPackage rec { pytestCheckHook ]; + disabledTests = [ + # https://github.com/jboynyc/textnets/issues/66 + "test_textnet_save_and_load" + ]; + pythonImportsCheck = [ "textnets" ]; # Enable the package to find the cythonized .so files during testing. See #255262