Files
nixpkgs/pkgs/development/python-modules/msg-parser/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

40 lines
884 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
# dependencies
olefile,
# test dependencies
pytestCheckHook,
}:
let
pname = "msg-parser";
version = "1.2.0";
in
buildPythonPackage {
inherit pname version;
format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "vikramarsid";
repo = "msg_parser";
rev = "4100b553b24895b489ebd414c771933fc1e558d3";
hash = "sha256-srDk6w8nzt0dyGCFQWfVCnKb4LawHoqoHX6d1l1dAmM=";
};
propagatedBuildInputs = [ olefile ];
nativeCheckInputs = [ pytestCheckHook ];
meta = with lib; {
description = "Python module to read, parse and converting Microsoft Outlook MSG E-Mail files";
mainProgram = "msg_parser";
homepage = "https://github.com/vikramarsid/msg_parser";
license = licenses.bsd2;
maintainers = with maintainers; [ happysalada ];
};
}