2020-03-28 22:32:34 +01:00
|
|
|
{ buildPythonApplication, fetchFromGitHub, lib, paramiko, peewee, pyqt5
|
|
|
|
, python-dateutil, APScheduler, psutil, qdarkstyle, secretstorage
|
|
|
|
, appdirs, setuptools, qt5
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonApplication rec {
|
|
|
|
pname = "vorta";
|
2020-09-10 23:37:00 +02:00
|
|
|
version = "0.7.1";
|
2020-03-28 22:32:34 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "borgbase";
|
|
|
|
repo = "vorta";
|
|
|
|
rev = "v${version}";
|
2020-09-10 23:37:00 +02:00
|
|
|
sha256 = "069fq5gv324l2ap3g6m6i12lhq1iqm27dsmaagyc3sva945j0gxw";
|
2020-03-28 22:32:34 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
sed -i -e '/setuptools_git/d' -e '/pytest-runner/d' setup.cfg
|
|
|
|
'';
|
|
|
|
|
|
|
|
nativeBuildInputs = [ qt5.wrapQtAppsHook ];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
paramiko peewee pyqt5 python-dateutil APScheduler psutil qdarkstyle
|
|
|
|
secretstorage appdirs setuptools
|
|
|
|
];
|
|
|
|
|
|
|
|
# QT setup in tests broken.
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
postFixup = ''
|
|
|
|
wrapQtApp $out/bin/vorta
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
license = licenses.gpl3;
|
|
|
|
homepage = "https://vorta.borgbase.com/";
|
|
|
|
maintainers = with maintainers; [ ma27 ];
|
|
|
|
description = "Desktop Backup Client for Borg";
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|