From 2246ee4275f19c3b4f347003f73206c813d64785 Mon Sep 17 00:00:00 2001 From: Thomas Gerbet Date: Thu, 19 Feb 2026 17:48:26 +0100 Subject: [PATCH] arrow-cpp: disable S3 tests needing Minio The tests rely on `minio` which is has been abandoned upstream, see #490996. In order to reduce the number of packages that will be flagged as insecure once minio is tagged with `knownVulnerabilities`, we disable the arrow-cpp tests needing it. --- pkgs/by-name/ar/arrow-cpp/package.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkgs/by-name/ar/arrow-cpp/package.nix b/pkgs/by-name/ar/arrow-cpp/package.nix index 10d3d4e45ae8..60c89bcc6966 100644 --- a/pkgs/by-name/ar/arrow-cpp/package.nix +++ b/pkgs/by-name/ar/arrow-cpp/package.nix @@ -33,7 +33,6 @@ gtest, libbacktrace, lz4, - minio, ninja, nlohmann_json, openssl, @@ -155,6 +154,7 @@ stdenv.mkDerivation (finalAttrs: { "TestMinioServer.Connect" "TestS3FS.*" "TestS3FSGeneric.*" + "TestS3FSHTTPS.*" # Needs Minio ]; in "-${lib.concatStringsSep ":" filteredTests}"; @@ -288,7 +288,6 @@ stdenv.mkDerivation (finalAttrs: { which sqlite ] - ++ lib.optionals enableS3 [ minio ] ++ lib.optionals enableFlight [ python3 ] ++ lib.optionals enableAzure [ azurite ];