98eb3e9ef5
GitOrigin-RevId: 00d80d13810dbfea8ab4ed1009b09100cca86ba8
49 lines
1.1 KiB
Nix
49 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
python3Packages,
|
|
fetchFromGitHub,
|
|
procps,
|
|
}:
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "mackup";
|
|
version = "0.8.40";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "lra";
|
|
repo = "mackup";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-hAIl9nGFRaROlt764IZg4ejw+b1dpnYpiYq4CB9dJqQ=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace mackup/utils.py \
|
|
--replace-fail '"/usr/bin/pgrep"' '"${lib.getExe' procps "pgrep"}"'
|
|
'';
|
|
|
|
nativeBuildInputs = with python3Packages; [
|
|
poetry-core
|
|
pythonRelaxDepsHook
|
|
nose
|
|
];
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
six
|
|
docopt
|
|
];
|
|
|
|
pythonImportsCheck = [ "mackup" ];
|
|
|
|
checkPhase = ''
|
|
nosetests
|
|
'';
|
|
|
|
meta = {
|
|
description = "A tool to keep your application settings in sync (OS X/Linux)";
|
|
changelog = "https://github.com/lra/mackup/releases/tag/${version}";
|
|
license = lib.licenses.agpl3Only;
|
|
homepage = "https://github.com/lra/mackup";
|
|
maintainers = with lib.maintainers; [ luftmensch-luftmensch ];
|
|
mainProgram = "mackup";
|
|
};
|
|
}
|