Skip to content

Commit eb5bc51

Browse files
authored
vorta: 0.9.1 -> 0.10.3 (#370650)
2 parents 6199c32 + 479fe8d commit eb5bc51

File tree

1 file changed

+14
-10
lines changed

1 file changed

+14
-10
lines changed

pkgs/applications/backup/vorta/default.nix

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@
1212

1313
python3Packages.buildPythonApplication rec {
1414
pname = "vorta";
15-
version = "0.9.1";
15+
version = "0.10.3";
1616
pyproject = true;
1717

1818
src = fetchFromGitHub {
1919
owner = "borgbase";
2020
repo = "vorta";
21-
rev = "v${version}";
22-
hash = "sha256-wGlnldS2p92NAYAyRPqKjSneIlbdsOiJ0N42n/mMGFI=";
21+
tag = "v${version}";
22+
hash = "sha256-VhM782mFWITA0VlKw0sBIu/UxUqlFLgq5XVdCpQggCw=";
2323
};
2424

2525
nativeBuildInputs = [
@@ -78,15 +78,19 @@ python3Packages.buildPythonApplication rec {
7878
export QT_QPA_PLATFORM=offscreen
7979
'';
8080

81-
disabledTestPaths = [
82-
# QObject::connect: No such signal QPlatformNativeInterface::systemTrayWindowChanged(QScreen*)
83-
"tests/test_excludes.py"
84-
"tests/integration"
85-
"tests/unit"
86-
];
81+
disabledTestPaths =
82+
[
83+
# QObject::connect: No such signal QPlatformNativeInterface::systemTrayWindowChanged(QScreen*) "tests/test_excludes.py"
84+
"tests/integration"
85+
"tests/unit"
86+
]
87+
++ lib.optionals stdenv.hostPlatform.isLinux [
88+
# Darwin-only test
89+
"tests/network_manager/test_darwin.py"
90+
];
8791

8892
meta = with lib; {
89-
changelog = "https://github.com/borgbase/vorta/releases/tag/${src.rev}";
93+
changelog = "https://github.com/borgbase/vorta/releases/tag/v${version}";
9094
description = "Desktop Backup Client for Borg";
9195
homepage = "https://vorta.borgbase.com/";
9296
license = licenses.gpl3Only;

0 commit comments

Comments
 (0)