nixpkgs/pkgs/applications/networking/maestral/default.nix

41 lines
1.1 KiB
Nix
Raw Normal View History

2019-08-16 03:52:17 +02:00
{ stdenv, lib, python3Packages, fetchFromGitHub
2019-08-06 06:46:14 +02:00
, withGui ? false, wrapQtAppsHook ? null }:
python3Packages.buildPythonApplication rec {
pname = "maestral${lib.optionalString withGui "-gui"}";
2019-10-27 06:43:27 +01:00
version = "0.4.2";
2019-08-06 06:46:14 +02:00
src = fetchFromGitHub {
owner = "SamSchott";
repo = "maestral-dropbox";
rev = "v${version}";
2019-10-27 06:43:27 +01:00
sha256 = "0xis0cqfp3wgajwk44dmi2gbfirmz0a0zi25qxdzpdn0z19hp88m";
2019-08-06 06:46:14 +02:00
};
disabled = python3Packages.pythonOlder "3.6";
propagatedBuildInputs = (with python3Packages; [
2019-08-16 03:52:17 +02:00
blinker click dropbox keyring keyrings-alt Pyro4 requests u-msgpack-python watchdog
] ++ lib.optionals stdenv.isLinux [
sdnotify systemd
2019-08-06 06:46:14 +02:00
] ++ lib.optional withGui pyqt5);
nativeBuildInputs = lib.optional withGui wrapQtAppsHook;
postInstall = lib.optionalString withGui ''
makeQtWrapper $out/bin/maestral $out/bin/maestral-gui \
--add-flags gui
'';
# no tests
doCheck = false;
meta = with lib; {
description = "Open-source Dropbox client for macOS and Linux";
license = licenses.mit;
maintainers = with maintainers; [ peterhoeg ];
platforms = platforms.unix;
inherit (src.meta) homepage;
};
}