2023-02-02 18:25:31 +00:00
|
|
|
{ lib
|
|
|
|
, fetchFromGitHub
|
2022-11-04 12:27:35 +00:00
|
|
|
, stdenv
|
2021-10-28 06:52:43 +00:00
|
|
|
, python3Packages
|
2020-09-25 04:45:31 +00:00
|
|
|
}:
|
2023-02-02 18:25:31 +00:00
|
|
|
|
2021-10-28 06:52:43 +00:00
|
|
|
python3Packages.buildPythonApplication rec {
|
2020-09-25 04:45:31 +00:00
|
|
|
pname = "barman";
|
2023-08-04 22:07:22 +00:00
|
|
|
version = "3.7.0";
|
2020-09-25 04:45:31 +00:00
|
|
|
|
2021-10-28 06:52:43 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "EnterpriseDB";
|
|
|
|
repo = pname;
|
2022-08-12 12:06:08 +00:00
|
|
|
rev = "refs/tags/release/${version}";
|
2023-08-04 22:07:22 +00:00
|
|
|
hash = "sha256-5mecCg5c+fu6WUgmNEL4BR+JCild02YAuYgLwO1MGnI=";
|
2020-09-25 04:45:31 +00:00
|
|
|
};
|
|
|
|
|
2022-08-21 13:32:41 +00:00
|
|
|
patches = [
|
|
|
|
./unwrap-subprocess.patch
|
|
|
|
];
|
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
nativeCheckInputs = with python3Packages; [
|
2021-10-28 06:52:43 +00:00
|
|
|
mock
|
2022-07-14 12:49:19 +00:00
|
|
|
python-snappy
|
|
|
|
google-cloud-storage
|
2021-10-28 06:52:43 +00:00
|
|
|
pytestCheckHook
|
|
|
|
];
|
2020-09-25 04:45:31 +00:00
|
|
|
|
2021-10-28 06:52:43 +00:00
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
|
|
argcomplete
|
|
|
|
azure-identity
|
|
|
|
azure-storage-blob
|
|
|
|
boto3
|
|
|
|
psycopg2
|
|
|
|
python-dateutil
|
|
|
|
];
|
2020-09-25 04:45:31 +00:00
|
|
|
|
2022-07-14 12:49:19 +00:00
|
|
|
disabledTests = [
|
|
|
|
# Assertion error
|
|
|
|
"test_help_output"
|
2022-11-04 12:27:35 +00:00
|
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
|
|
# FsOperationFailed
|
|
|
|
"test_get_file_mode"
|
2022-07-14 12:49:19 +00:00
|
|
|
];
|
|
|
|
|
2020-09-25 04:45:31 +00:00
|
|
|
meta = with lib; {
|
2021-10-28 06:52:43 +00:00
|
|
|
homepage = "https://www.pgbarman.org/";
|
|
|
|
description = "Backup and Recovery Manager for PostgreSQL";
|
2023-02-02 18:25:31 +00:00
|
|
|
changelog = "https://github.com/EnterpriseDB/barman/blob/release/${version}/NEWS";
|
2020-09-25 04:45:31 +00:00
|
|
|
maintainers = with maintainers; [ freezeboy ];
|
2021-10-28 06:52:43 +00:00
|
|
|
license = licenses.gpl3Plus;
|
2020-09-25 04:45:31 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|