2021-02-15 11:55:29 +00:00
|
|
|
{ lib
|
2020-06-16 18:46:10 +01:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchFromGitHub
|
|
|
|
, pythonOlder
|
|
|
|
, python
|
2021-03-15 19:51:02 +00:00
|
|
|
, click, desktop-notifier, dropbox, fasteners, keyring, keyrings-alt, packaging, pathspec, Pyro5, requests, setuptools, sdnotify, survey, watchdog
|
2020-12-08 15:31:36 +00:00
|
|
|
, importlib-metadata
|
2020-06-16 18:46:10 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "maestral";
|
2021-06-19 02:39:09 +01:00
|
|
|
version = "1.4.4";
|
2020-06-16 18:46:10 +01:00
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "SamSchott";
|
|
|
|
repo = "maestral";
|
|
|
|
rev = "v${version}";
|
2021-06-19 02:39:09 +01:00
|
|
|
sha256 = "03scg4y13jbi8n454hc4vq8p02isbhppqx0zhbady639p7l3ggfg";
|
2020-06-16 18:46:10 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
click
|
2021-02-15 11:55:29 +00:00
|
|
|
desktop-notifier
|
2020-06-16 18:46:10 +01:00
|
|
|
dropbox
|
|
|
|
fasteners
|
|
|
|
keyring
|
|
|
|
keyrings-alt
|
2020-10-08 23:44:29 +01:00
|
|
|
packaging
|
2020-06-16 18:46:10 +01:00
|
|
|
pathspec
|
|
|
|
Pyro5
|
|
|
|
requests
|
2020-10-08 23:44:29 +01:00
|
|
|
setuptools
|
|
|
|
sdnotify
|
2020-12-08 15:31:36 +00:00
|
|
|
survey
|
2020-06-16 18:46:10 +01:00
|
|
|
watchdog
|
2021-01-24 00:29:22 +00:00
|
|
|
] ++ lib.optionals (pythonOlder "3.8") [
|
2020-12-08 15:31:36 +00:00
|
|
|
importlib-metadata
|
2020-06-16 18:46:10 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
makeWrapperArgs = [
|
|
|
|
# Add the installed directories to the python path so the daemon can find them
|
2021-01-24 00:29:22 +00:00
|
|
|
"--prefix" "PYTHONPATH" ":" "${lib.concatStringsSep ":" (map (p: p + "/lib/${python.libPrefix}/site-packages") (python.pkgs.requiredPythonModules propagatedBuildInputs))}"
|
2020-06-16 18:46:10 +01:00
|
|
|
"--prefix" "PYTHONPATH" ":" "$out/lib/${python.libPrefix}/site-packages"
|
|
|
|
];
|
|
|
|
|
|
|
|
# no tests
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-06-16 18:46:10 +01:00
|
|
|
description = "Open-source Dropbox client for macOS and Linux";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ peterhoeg ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
inherit (src.meta) homepage;
|
|
|
|
};
|
|
|
|
}
|