mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
4ebbd58c69
Diff: https://github.com/TeamMsgExtractor/msg-extractor/compare/refs/tags/v0.51.1...v0.52.0 Changelog: https://github.com/TeamMsgExtractor/msg-extractor/blob/0.52.0/CHANGELOG.md
64 lines
1.2 KiB
Nix
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.52.0";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "TeamMsgExtractor";
|
|
repo = "msg-extractor";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-4jvzZkGa/xI5Sl9TBIm/BD3tGl+MZvwir6m/zrvA4tQ=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|