Skip to content

Commit

Permalink
Merge pull request #111413 from dotlambda/vorta-0.7.2
Browse files Browse the repository at this point in the history
vorta: 0.7.1 -> 0.7.2
  • Loading branch information
grahamc authored Feb 1, 2021
2 parents f23bfff + 621342d commit 86d5d96
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
19 changes: 10 additions & 9 deletions pkgs/applications/backup/vorta/default.nix
Original file line number Diff line number Diff line change
@@ -1,26 +1,27 @@
{ buildPythonApplication, fetchFromGitHub, lib, paramiko, peewee, pyqt5
, python-dateutil, APScheduler, psutil, qdarkstyle, secretstorage
, appdirs, setuptools, qt5
{ lib
, python3
, fetchFromGitHub
, wrapQtAppsHook
}:

buildPythonApplication rec {
python3.pkgs.buildPythonApplication rec {
pname = "vorta";
version = "0.7.1";
version = "0.7.2";

src = fetchFromGitHub {
owner = "borgbase";
repo = "vorta";
rev = "v${version}";
sha256 = "069fq5gv324l2ap3g6m6i12lhq1iqm27dsmaagyc3sva945j0gxw";
sha256 = "1amq0fz3xrnxplzd6ih2azx6b4k1w496kcr7f8agfp617f5rkwa5";
};

postPatch = ''
sed -i -e '/setuptools_git/d' -e '/pytest-runner/d' setup.cfg
'';

nativeBuildInputs = [ qt5.wrapQtAppsHook ];
nativeBuildInputs = [ wrapQtAppsHook ];

propagatedBuildInputs = [
propagatedBuildInputs = with python3.pkgs; [
paramiko peewee pyqt5 python-dateutil APScheduler psutil qdarkstyle
secretstorage appdirs setuptools
];
Expand All @@ -33,7 +34,7 @@ buildPythonApplication rec {
'';

meta = with lib; {
license = licenses.gpl3;
license = licenses.gpl3Only;
homepage = "https://vorta.borgbase.com/";
maintainers = with maintainers; [ ma27 ];
description = "Desktop Backup Client for Borg";
Expand Down
2 changes: 1 addition & 1 deletion pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3792,7 +3792,7 @@ in

volctl = callPackage ../tools/audio/volctl { };

vorta = python3Packages.callPackage ../applications/backup/vorta { };
vorta = libsForQt5.callPackage ../applications/backup/vorta { };

utahfs = callPackage ../applications/networking/utahfs { };

Expand Down

0 comments on commit 86d5d96

Please sign in to comment.