File tree Expand file tree Collapse file tree 1 file changed +14
-10
lines changed
pkgs/applications/backup/vorta Expand file tree Collapse file tree 1 file changed +14
-10
lines changed Original file line number Diff line number Diff line change 1212
1313python3Packages . 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 ;
You can’t perform that action at this time.
0 commit comments