Files
nixpkgs/pkgs/development/python-modules/extract-msg/default.nix
Dark Steveneq 646b892680
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
push sheeet
2025-10-09 14:15:47 +02:00

64 lines
1.2 KiB
Nix

{
lib,
beautifulsoup4,
buildPythonPackage,
compressed-rtf,
ebcdic,
fetchFromGitHub,
olefile,
pytestCheckHook,
pythonOlder,
red-black-tree-mod,
rtfde,
setuptools,
tzlocal,
}:
buildPythonPackage rec {
pname = "extract-msg";
version = "0.55.0";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "TeamMsgExtractor";
repo = "msg-extractor";
tag = "v${version}";
hash = "sha256-n/v3ubgzWlWqLXZfy1O7+FvTJoLMtgL7DFPL39SZnfM=";
};
pythonRelaxDeps = [
"olefile"
"red-black-tree-mod"
];
build-system = [
setuptools
];
dependencies = [
beautifulsoup4
compressed-rtf
ebcdic
olefile
red-black-tree-mod
rtfde
tzlocal
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "extract_msg" ];
enabledTestPaths = [ "extract_msg_tests/*.py" ];
meta = with lib; {
description = "Extracts emails and attachments saved in Microsoft Outlook's .msg files";
homepage = "https://github.com/TeamMsgExtractor/msg-extractor";
changelog = "https://github.com/TeamMsgExtractor/msg-extractor/blob/${src.tag}/CHANGELOG.md";
license = licenses.gpl3Only;
maintainers = with maintainers; [ fab ];
};
}