From c382b2eda8a00691415e2df160ab80bdfad4359d Mon Sep 17 00:00:00 2001 From: Sarah Clark Date: Thu, 12 Mar 2026 13:23:41 -0700 Subject: [PATCH] python3Packages.colcon-cargo: disable broken tests Tests attempt to download from outside at test time --- pkgs/development/python-modules/colcon-cargo/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/development/python-modules/colcon-cargo/default.nix b/pkgs/development/python-modules/colcon-cargo/default.nix index 5311c5ce8196..6ab0c15c79b4 100644 --- a/pkgs/development/python-modules/colcon-cargo/default.nix +++ b/pkgs/development/python-modules/colcon-cargo/default.nix @@ -38,6 +38,12 @@ buildPythonPackage rec { writableTmpDirAsHomeHook ]; + disabledTests = [ + # Attempts to download https://index.crates.io/config.json at test time + "test_build_and_test_package" + "test_skip_pure_library_package" + ]; + disabledTestPaths = [ # Skip the linter tests "test/test_flake8.py"