Merge pull request #232720 from bbenno/init_whatsapp-chat-exporter

whatsapp-chat-exporter: init at 0.9.1

authored by

Sandro and committed by
GitHub
f231f786 f74befad

+40
+38
pkgs/tools/misc/whatsapp-chat-exporter/default.nix
··· 1 + { lib 2 + , python3Packages 3 + , fetchFromGitHub 4 + }: 5 + 6 + python3Packages.buildPythonApplication rec { 7 + pname = "whatsapp-chat-exporter"; 8 + version = "0.9.1"; 9 + format = "setuptools"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "KnugiHK"; 13 + repo = "Whatsapp-Chat-Exporter"; 14 + rev = "refs/tags/${version}"; 15 + hash = "sha256-DvCYMfR9GgdP9rVpcoIR5nG9b4ToOBMG1a9OTvjfIiU="; 16 + }; 17 + 18 + propagatedBuildInputs = with python3Packages; [ 19 + bleach 20 + jinja2 21 + pycryptodome 22 + javaobj-py3 23 + ]; 24 + 25 + meta = with lib; { 26 + homepage = "https://github.com/KnugiHK/Whatsapp-Chat-Exporter"; 27 + description = "WhatsApp database parser"; 28 + changelog = "https://github.com/KnugiHK/Whatsapp-Chat-Exporter/releases/tag/${version}"; 29 + longDescription = '' 30 + A customizable Android and iPhone WhatsApp database parser that will give 31 + you the history of your WhatsApp conversations inHTML and JSON. Android 32 + Backup Crypt12, Crypt14 and Crypt15 supported. 33 + ''; 34 + license = licenses.mit; 35 + mainProgram = "wtsexporter"; 36 + maintainers = with maintainers; [ bbenno ]; 37 + }; 38 + }
+2
pkgs/top-level/all-packages.nix
··· 13718 13718 13719 13719 whatip = callPackage ../tools/networking/whatip { }; 13720 13720 13721 + whatsapp-chat-exporter = callPackage ../tools/misc/whatsapp-chat-exporter { }; 13722 + 13721 13723 whatweb = callPackage ../tools/security/whatweb { }; 13722 13724 13723 13725 whipper = callPackage ../applications/audio/whipper { };