mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 09:23:01 +00:00
barman: fix build on darwin
This commit is contained in:
parent
3db0fa106d
commit
72d82c24d2
@ -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; {
|
||||
|
Loading…
Reference in New Issue
Block a user