nixpkgs/pkgs/development/python-modules/maestral/default.nix

58 lines
1.4 KiB
Nix
Raw Normal View History

{ lib
2020-06-16 17:46:10 +00:00
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, python
, click, desktop-notifier, dropbox, fasteners, keyring, keyrings-alt, packaging, pathspec, Pyro5, requests, setuptools, sdnotify, survey, watchdog
, importlib-metadata
2020-06-16 17:46:10 +00:00
}:
buildPythonPackage rec {
pname = "maestral";
version = "1.4.6";
2020-06-16 17:46:10 +00:00
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "SamSchott";
repo = "maestral";
rev = "v${version}";
sha256 = "sha256-kaRcM8Z0xeDp3JYputKZmzTfYYq2oKpF7AM6ciFF7I4=";
2020-06-16 17:46:10 +00:00
};
propagatedBuildInputs = [
click
desktop-notifier
2020-06-16 17:46:10 +00:00
dropbox
fasteners
keyring
keyrings-alt
packaging
2020-06-16 17:46:10 +00:00
pathspec
Pyro5
requests
setuptools
sdnotify
survey
2020-06-16 17:46:10 +00:00
watchdog
] ++ lib.optionals (pythonOlder "3.8") [
importlib-metadata
2020-06-16 17:46:10 +00:00
];
makeWrapperArgs = [
# Add the installed directories to the python path so the daemon can find them
"--prefix" "PYTHONPATH" ":" "${lib.concatStringsSep ":" (map (p: p + "/lib/${python.libPrefix}/site-packages") (python.pkgs.requiredPythonModules propagatedBuildInputs))}"
2020-06-16 17:46:10 +00:00
"--prefix" "PYTHONPATH" ":" "$out/lib/${python.libPrefix}/site-packages"
];
# no tests
doCheck = false;
meta = with lib; {
2020-06-16 17:46:10 +00:00
description = "Open-source Dropbox client for macOS and Linux";
license = licenses.mit;
maintainers = with maintainers; [ peterhoeg ];
platforms = platforms.unix;
homepage = "https://maestral.app";
2020-06-16 17:46:10 +00:00
};
}