2023-05-02 22:32:52 +02:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, borgbackup
|
|
|
|
, coreutils
|
|
|
|
, python3Packages
|
2023-05-25 18:03:52 +02:00
|
|
|
, fetchPypi
|
2023-05-02 22:32:52 +02:00
|
|
|
, systemd
|
|
|
|
, enableSystemd ? lib.meta.availableOn stdenv.hostPlatform systemd
|
|
|
|
, installShellFiles
|
|
|
|
, borgmatic
|
|
|
|
, testers
|
|
|
|
}:
|
2021-02-17 05:49:52 +01:00
|
|
|
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
|
|
pname = "borgmatic";
|
2023-07-11 16:27:48 +02:00
|
|
|
version = "1.7.15";
|
2021-02-17 05:49:52 +01:00
|
|
|
|
2023-05-25 18:03:52 +02:00
|
|
|
src = fetchPypi {
|
2021-02-17 05:49:52 +01:00
|
|
|
inherit pname version;
|
2023-07-11 16:27:48 +02:00
|
|
|
sha256 = "sha256-esTvcybCPTayA9LCSukNc9ba8eGCTyjB883eZYy91II=";
|
2021-02-17 05:49:52 +01:00
|
|
|
};
|
|
|
|
|
2023-01-21 13:00:00 +01:00
|
|
|
nativeCheckInputs = with python3Packages; [ flexmock pytestCheckHook pytest-cov ];
|
2021-02-17 05:49:52 +01:00
|
|
|
|
|
|
|
# - test_borgmatic_version_matches_news_version
|
|
|
|
# The file NEWS not available on the pypi source, and this test is useless
|
|
|
|
disabledTests = [
|
|
|
|
"test_borgmatic_version_matches_news_version"
|
|
|
|
];
|
|
|
|
|
2022-09-11 20:11:35 +02:00
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
|
2021-02-17 05:49:52 +01:00
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
|
|
borgbackup
|
|
|
|
colorama
|
2021-09-10 17:34:56 +02:00
|
|
|
jsonschema
|
2023-07-11 16:27:48 +02:00
|
|
|
packaging
|
2021-11-03 11:10:50 +01:00
|
|
|
ruamel-yaml
|
2021-02-17 05:49:52 +01:00
|
|
|
requests
|
|
|
|
setuptools
|
|
|
|
];
|
|
|
|
|
|
|
|
postInstall = ''
|
2022-09-11 20:11:35 +02:00
|
|
|
installShellCompletion --cmd borgmatic \
|
|
|
|
--bash <($out/bin/borgmatic --bash-completion)
|
2023-05-02 22:32:52 +02:00
|
|
|
'' + lib.optionalString enableSystemd ''
|
2021-02-17 05:49:52 +01:00
|
|
|
mkdir -p $out/lib/systemd/system
|
|
|
|
cp sample/systemd/borgmatic.timer $out/lib/systemd/system/
|
2023-03-02 08:00:10 +01:00
|
|
|
# there is another "sleep", so choose the one with the space after it
|
|
|
|
# due to https://github.com/borgmatic-collective/borgmatic/commit/2e9f70d49647d47fb4ca05f428c592b0e4319544
|
2021-02-17 05:49:52 +01:00
|
|
|
substitute sample/systemd/borgmatic.service \
|
|
|
|
$out/lib/systemd/system/borgmatic.service \
|
|
|
|
--replace /root/.local/bin/borgmatic $out/bin/borgmatic \
|
|
|
|
--replace systemd-inhibit ${systemd}/bin/systemd-inhibit \
|
2023-03-02 08:00:10 +01:00
|
|
|
--replace "sleep " "${coreutils}/bin/sleep "
|
2021-02-17 05:49:52 +01:00
|
|
|
'';
|
|
|
|
|
2022-09-11 20:16:48 +02:00
|
|
|
passthru.tests.version = testers.testVersion { package = borgmatic; };
|
|
|
|
|
2021-02-17 05:49:52 +01:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Simple, configuration-driven backup software for servers and workstations";
|
|
|
|
homepage = "https://torsion.org/borgmatic/";
|
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ imlonghao ];
|
|
|
|
};
|
|
|
|
}
|