From 516c9aef6069e773a777ae6e7997debd29195cd0 Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Fri, 19 Apr 2024 12:45:59 -0700 Subject: [PATCH] python3Packages.qrcode: disable sandbox-incompatible test --- pkgs/development/python-modules/qrcode/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/python-modules/qrcode/default.nix b/pkgs/development/python-modules/qrcode/default.nix index b5c3d2aec6b3..3d7ad90dbaaf 100644 --- a/pkgs/development/python-modules/qrcode/default.nix +++ b/pkgs/development/python-modules/qrcode/default.nix @@ -51,6 +51,9 @@ buildPythonPackage rec { disabledTests = lib.optionals (pythonAtLeast "3.12") [ "test_change" + ] ++ [ + # Attempts to open a file which doesn't exist in sandbox + "test_piped" ]; meta = with lib; {