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

75 lines
1.8 KiB
Nix
Raw Normal View History

{ lib
2020-06-16 18:46:10 +01:00
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, python
, click, desktop-notifier, dropbox, fasteners, keyring, keyrings-alt, packaging, pathspec, Pyro5, requests, setuptools, sdnotify, survey, watchdog
, importlib-metadata
2021-08-22 21:55:38 +01:00
, pytestCheckHook
2020-06-16 18:46:10 +01:00
}:
buildPythonPackage rec {
pname = "maestral";
2021-12-06 06:18:42 +00:00
version = "1.5.2";
2020-06-16 18:46:10 +01:00
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "SamSchott";
repo = "maestral";
rev = "v${version}";
2021-12-06 06:18:42 +00:00
sha256 = "sha256-nFXgvFLw6ru/Sw3+LoZ7V09dyn0L21We/Dlwib2gZB8=";
2020-06-16 18:46:10 +01:00
};
propagatedBuildInputs = [
click
desktop-notifier
2020-06-16 18:46:10 +01:00
dropbox
fasteners
keyring
keyrings-alt
packaging
2020-06-16 18:46:10 +01:00
pathspec
Pyro5
requests
setuptools
sdnotify
survey
2020-06-16 18:46:10 +01:00
watchdog
] ++ lib.optionals (pythonOlder "3.8") [
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
"--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"
];
2021-08-22 21:55:38 +01:00
checkInputs = [
pytestCheckHook
];
disabledTests = [
# We don't want to benchmark
"test_performance"
# Requires systemd
"test_autostart"
# Requires network access
"test_check_for_updates"
# Tries to look at /usr
"test_filestatus"
"test_path_exists_case_insensitive"
"test_cased_path_candidates"
];
pythonImportsCheck = [ "maestral" ];
2020-06-16 18:46:10 +01: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;
homepage = "https://maestral.app";
2020-06-16 18:46:10 +01:00
};
}