From 1ed86ad5b0e2723a6b5d738dc591821b51df0041 Mon Sep 17 00:00:00 2001 From: emaryn Date: Wed, 16 Apr 2025 10:44:46 +0800 Subject: [PATCH] barman: 3.11.1 -> 3.13.2 --- pkgs/by-name/ba/barman/package.nix | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/pkgs/by-name/ba/barman/package.nix b/pkgs/by-name/ba/barman/package.nix index 291ad440a3ee..bbc41c1c0c5e 100644 --- a/pkgs/by-name/ba/barman/package.nix +++ b/pkgs/by-name/ba/barman/package.nix @@ -8,14 +8,14 @@ python3Packages.buildPythonApplication rec { pname = "barman"; - version = "3.11.1"; + version = "3.13.2"; pyproject = true; src = fetchFromGitHub { owner = "EnterpriseDB"; repo = "barman"; tag = "release/${version}"; - hash = "sha256-X39XOv8HJdSjMjMMnmB7Gxjseg5k/LuKICTxapcHVsU="; + hash = "sha256-CfzDO4u6JL4cLHvs7f1oQqQPc+j1lKng4J9wIBswIpA="; }; patches = [ ./unwrap-subprocess.patch ]; @@ -44,6 +44,8 @@ python3Packages.buildPythonApplication rec { mock pytestCheckHook versionCheckHook + zstandard + lz4 ]; disabledTests = @@ -57,13 +59,13 @@ python3Packages.buildPythonApplication rec { "test_get_file_mode" ]; - meta = with lib; { + meta = { description = "Backup and Recovery Manager for PostgreSQL"; homepage = "https://www.pgbarman.org/"; changelog = "https://github.com/EnterpriseDB/barman/blob/release/${version}/NEWS"; mainProgram = "barman"; - license = licenses.gpl3Plus; - maintainers = with maintainers; [ freezeboy ]; - platforms = platforms.unix; + license = lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ freezeboy ]; + platforms = lib.platforms.unix; }; }