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
46 lines
896 B
Nix
46 lines
896 B
Nix
{
|
|
lib,
|
|
python3,
|
|
fetchPypi,
|
|
nix-update-script,
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "signal-export";
|
|
version = "3.8.1";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit version;
|
|
pname = "signal_export";
|
|
hash = "sha256-o+Z4vSqu2avQyzf93o5s2hKmCK2I8aoF4JGlLzM/9xI=";
|
|
};
|
|
|
|
build-system = with python3.pkgs; [
|
|
pdm-backend
|
|
];
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
typer
|
|
beautifulsoup4
|
|
emoji
|
|
markdown
|
|
pycryptodome
|
|
sqlcipher3-wheels
|
|
];
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = with lib; {
|
|
mainProgram = "sigexport";
|
|
homepage = "https://github.com/carderne/signal-export";
|
|
description = "Export your Signal chats to markdown files with attachments";
|
|
platforms = platforms.unix;
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [
|
|
phaer
|
|
picnoir
|
|
];
|
|
};
|
|
}
|