Merge pull request #199276 from wegank/barman-darwin

barman: fix build on darwin
This commit is contained in:
Mario Rodas 2022-11-06 18:41:07 -05:00 committed by GitHub
commit 967cc70757
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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; {