7 python3Packages.buildPythonApplication rec {
12 src = fetchFromGitHub {
16 hash = "sha256-eWSBl8BTg2FLI21DQcnepBFPF08bfm0V8lYB4mMbAiw=";
20 substituteInPlace mackup/utils.py \
21 --replace-fail '"/usr/bin/pgrep"' '"${lib.getExe' procps "pgrep"}"' \
24 build-system = with python3Packages; [ poetry-core ];
26 dependencies = with python3Packages; [ docopt ];
28 pythonImportsCheck = [ "mackup" ];
30 nativeCheckInputs = with python3Packages; [ pytestCheckHook ];
32 pytestFlagsArray = [ "tests/*.py" ];
34 # Disabling tests failing on darwin due to a missing pgrep binary on procps
35 disabledTests = [ "test_is_process_running" ];
38 description = "A tool to keep your application settings in sync (OS X/Linux)";
39 changelog = "https://github.com/lra/mackup/releases/tag/${version}";
40 license = lib.licenses.agpl3Only;
41 homepage = "https://github.com/lra/mackup";
42 maintainers = with lib.maintainers; [ luftmensch-luftmensch ];
43 mainProgram = "mackup";