mackup: 0.9.5 -> 0.10.1

bump mackup version

upsteam changeset: https://github.com/lra/mackup/compare/0.9.5...0.10.1
This commit is contained in:
confus
2025-12-09 11:19:20 +01:00
parent e534a3cb7a
commit 266a44fc1f
+3 -3
View File
@@ -7,18 +7,18 @@
}:
python3Packages.buildPythonApplication rec {
pname = "mackup";
version = "0.9.5";
version = "0.10.1";
pyproject = true;
src = fetchFromGitHub {
owner = "lra";
repo = "mackup";
rev = "${version}";
hash = "sha256-10Q0lb2wiDjD4v2yFBvG3tvy9r+/T/ni4QhHUPyxFO0=";
hash = "sha256-tFuIpR8EsTbiuHCb5RS9QPQ3YpnvYOWOBEOI5J9jaSM=";
};
postPatch = ''
substituteInPlace mackup/utils.py \
substituteInPlace src/mackup/utils.py \
--replace-fail '"/usr/bin/pgrep"' '"${lib.getExe' procps "pgrep"}"' \
'';