From 72d82c24d29d087becd782e92ef259705420c5de Mon Sep 17 00:00:00 2001 From: Weijia Wang <9713184+wegank@users.noreply.github.com> Date: Thu, 3 Nov 2022 12:37:15 +0100 Subject: [PATCH] barman: fix build on darwin --- pkgs/tools/misc/barman/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/tools/misc/barman/default.nix b/pkgs/tools/misc/barman/default.nix index 281a2ce1c17a..70d8e98b8f7a 100644 --- a/pkgs/tools/misc/barman/default.nix +++ b/pkgs/tools/misc/barman/default.nix @@ -1,5 +1,6 @@ { fetchFromGitHub , lib +, stdenv , python3Packages }: python3Packages.buildPythonApplication rec { @@ -36,6 +37,9 @@ python3Packages.buildPythonApplication rec { disabledTests = [ # Assertion error "test_help_output" + ] ++ lib.optionals stdenv.isDarwin [ + # FsOperationFailed + "test_get_file_mode" ]; meta = with lib; {