Skip to content

Commit

Permalink
vorta: 0.9.1 -> 0.10.3 (NixOS#370650)
Browse files Browse the repository at this point in the history
  • Loading branch information
GaetanLepage authored Jan 6, 2025
2 parents 6199c32 + 479fe8d commit eb5bc51
Showing 1 changed file with 14 additions and 10 deletions.
24 changes: 14 additions & 10 deletions pkgs/applications/backup/vorta/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@

python3Packages.buildPythonApplication rec {
pname = "vorta";
version = "0.9.1";
version = "0.10.3";
pyproject = true;

src = fetchFromGitHub {
owner = "borgbase";
repo = "vorta";
rev = "v${version}";
hash = "sha256-wGlnldS2p92NAYAyRPqKjSneIlbdsOiJ0N42n/mMGFI=";
tag = "v${version}";
hash = "sha256-VhM782mFWITA0VlKw0sBIu/UxUqlFLgq5XVdCpQggCw=";
};

nativeBuildInputs = [
Expand Down Expand Up @@ -78,15 +78,19 @@ python3Packages.buildPythonApplication rec {
export QT_QPA_PLATFORM=offscreen
'';

disabledTestPaths = [
# QObject::connect: No such signal QPlatformNativeInterface::systemTrayWindowChanged(QScreen*)
"tests/test_excludes.py"
"tests/integration"
"tests/unit"
];
disabledTestPaths =
[
# QObject::connect: No such signal QPlatformNativeInterface::systemTrayWindowChanged(QScreen*) "tests/test_excludes.py"
"tests/integration"
"tests/unit"
]
++ lib.optionals stdenv.hostPlatform.isLinux [
# Darwin-only test
"tests/network_manager/test_darwin.py"
];

meta = with lib; {
changelog = "https://github.com/borgbase/vorta/releases/tag/${src.rev}";
changelog = "https://github.com/borgbase/vorta/releases/tag/v${version}";
description = "Desktop Backup Client for Borg";
homepage = "https://vorta.borgbase.com/";
license = licenses.gpl3Only;
Expand Down

0 comments on commit eb5bc51

Please sign in to comment.