2021-10-24 16:31:35 +00:00
|
|
|
{ fetchFromGitHub
|
|
|
|
, lib
|
2022-11-03 11:37:15 +00:00
|
|
|
, stdenv
|
2021-10-24 16:31:35 +00:00
|
|
|
, python3Packages
|
2020-09-13 03:34:16 +00:00
|
|
|
}:
|
2021-10-24 16:31:35 +00:00
|
|
|
python3Packages.buildPythonApplication rec {
|
2020-09-13 03:34:16 +00:00
|
|
|
pname = "barman";
|
2023-01-26 23:46:10 +00:00
|
|
|
version = "3.4.0";
|
2020-09-13 03:34:16 +00:00
|
|
|
|
2021-10-24 16:31:35 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "EnterpriseDB";
|
|
|
|
repo = pname;
|
2022-07-20 00:58:51 +00:00
|
|
|
rev = "refs/tags/release/${version}";
|
2023-01-26 23:46:10 +00:00
|
|
|
sha256 = "sha256-K5y5C+K/fMhgOcSsCMaIgY6ce9UUPszoyumsfNHKjBo=";
|
2020-09-13 03:34:16 +00:00
|
|
|
};
|
|
|
|
|
2022-07-19 21:46:09 +00:00
|
|
|
patches = [
|
|
|
|
./unwrap-subprocess.patch
|
|
|
|
];
|
|
|
|
|
2023-01-21 12:00:00 +00:00
|
|
|
nativeCheckInputs = with python3Packages; [
|
2021-10-24 16:31:35 +00:00
|
|
|
mock
|
2022-07-06 14:52:01 +00:00
|
|
|
python-snappy
|
|
|
|
google-cloud-storage
|
2021-10-24 16:31:35 +00:00
|
|
|
pytestCheckHook
|
|
|
|
];
|
2020-09-13 03:34:16 +00:00
|
|
|
|
2021-10-24 16:31:35 +00:00
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
|
|
argcomplete
|
|
|
|
azure-identity
|
|
|
|
azure-storage-blob
|
|
|
|
boto3
|
|
|
|
psycopg2
|
|
|
|
python-dateutil
|
|
|
|
];
|
2020-09-13 03:34:16 +00:00
|
|
|
|
2022-07-06 14:52:01 +00:00
|
|
|
disabledTests = [
|
|
|
|
# Assertion error
|
|
|
|
"test_help_output"
|
2022-11-03 11:37:15 +00:00
|
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
|
|
# FsOperationFailed
|
|
|
|
"test_get_file_mode"
|
2022-07-06 14:52:01 +00:00
|
|
|
];
|
|
|
|
|
2020-09-13 03:34:16 +00:00
|
|
|
meta = with lib; {
|
2021-10-24 16:31:35 +00:00
|
|
|
homepage = "https://www.pgbarman.org/";
|
|
|
|
description = "Backup and Recovery Manager for PostgreSQL";
|
2020-09-13 03:34:16 +00:00
|
|
|
maintainers = with maintainers; [ freezeboy ];
|
2021-10-24 16:31:35 +00:00
|
|
|
license = licenses.gpl3Plus;
|
2020-09-13 03:34:16 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|