Unverified Commit eb5bc51d authored by Gaétan Lepage's avatar Gaétan Lepage Committed by GitHub
Browse files

vorta: 0.9.1 -> 0.10.3 (#370650)

parents 6199c32f 479fe8d5
Loading
Loading
Loading
Loading
+14 −10
Original line number Diff line number Diff line
@@ -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 = [
@@ -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"
  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;