Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
47 lines
1.1 KiB
Nix
47 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
python3Packages,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
let
|
|
version = "0.12.0";
|
|
in
|
|
python3Packages.buildPythonApplication {
|
|
pname = "whatsapp-chat-exporter";
|
|
inherit version;
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "KnugiHK";
|
|
repo = "Whatsapp-Chat-Exporter";
|
|
tag = version;
|
|
hash = "sha256-0FJZqqmuSA+te5lzi1okkmuT3s2JNX7uHoYl9ayNt/Q=";
|
|
};
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
bleach
|
|
jinja2
|
|
pycryptodome
|
|
javaobj-py3
|
|
vobject
|
|
];
|
|
|
|
meta = {
|
|
homepage = "https://github.com/KnugiHK/Whatsapp-Chat-Exporter";
|
|
description = "WhatsApp database parser";
|
|
changelog = "https://github.com/KnugiHK/Whatsapp-Chat-Exporter/releases/tag/${version}";
|
|
longDescription = ''
|
|
A customizable Android and iPhone WhatsApp database parser that will give
|
|
you the history of your WhatsApp conversations inHTML and JSON. Android
|
|
Backup Crypt12, Crypt14 and Crypt15 supported.
|
|
'';
|
|
license = lib.licenses.mit;
|
|
mainProgram = "wtsexporter";
|
|
maintainers = with lib.maintainers; [
|
|
bbenno
|
|
EstebanMacanek
|
|
];
|
|
};
|
|
}
|