depot/third_party/nixpkgs/pkgs/development/python-modules/extract-msg/default.nix
Default email 555cd8a8f9 Project import generated by Copybara.
GitOrigin-RevId: 5633bcff0c6162b9e4b5f1264264611e950c8ec7
2024-10-09 18:51:18 +02:00

63 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.50.1";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "TeamMsgExtractor";
repo = "msg-extractor";
rev = "refs/tags/v${version}";
hash = "sha256-MWqJYdv+P87n5KtrtSJnyY59uuLtHL9EG8WyYRdfSTw=";
};
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" ];
pytestFlagsArray = [ "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/${version}/CHANGELOG.md";
license = licenses.gpl3Only;
maintainers = with maintainers; [ fab ];
};
}