blob: 7e1eea61d0a932d37fcb9a2ed2142d19b5617b16 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
{
lib,
stdenv,
fetchFromGitHub,
python3Packages,
}:
python3Packages.buildPythonApplication rec {
pname = "barman";
version = "3.11.1";
pyproject = true;
src = fetchFromGitHub {
owner = "EnterpriseDB";
repo = "barman";
rev = "refs/tags/release/${version}";
hash = "sha256-X39XOv8HJdSjMjMMnmB7Gxjseg5k/LuKICTxapcHVsU=";
};
patches = [ ./unwrap-subprocess.patch ];
build-system = with python3Packages; [
distutils
setuptools
];
dependencies = with python3Packages; [
argcomplete
azure-identity
azure-mgmt-compute
azure-storage-blob
boto3
google-cloud-compute
google-cloud-storage
grpcio
psycopg2
python-dateutil
python-snappy
];
nativeCheckInputs = with python3Packages; [
mock
pytestCheckHook
];
disabledTests =
[
# Assertion error
"test_help_output"
]
++ lib.optionals stdenv.hostPlatform.isDarwin [
# FsOperationFailed
"test_get_file_mode"
];
meta = with lib; {
description = "Backup and Recovery Manager for PostgreSQL";
homepage = "https://www.pgbarman.org/";
changelog = "https://github.com/EnterpriseDB/barman/blob/release/${version}/NEWS";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ freezeboy ];
platforms = platforms.unix;
};
}
|