pythonPackages.msg-parser: init at 1.2.0

This commit is contained in:
happysalada 2023-06-06 08:41:24 -04:00 committed by Yt
parent f742512ccc
commit e1e97d0a46
2 changed files with 43 additions and 0 deletions

View file

@ -0,0 +1,41 @@
{ 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.";
homepage = "https://github.com/vikramarsid/msg_parser";
license = licenses.bsd2;
maintainers = with maintainers; [ happysalada ];
};
}

View file

@ -6482,6 +6482,8 @@ self: super: with self; {
msgpack-numpy = callPackage ../development/python-modules/msgpack-numpy { };
msg-parser = callPackage ../development/python-modules/msg-parser { };
msgspec = callPackage ../development/python-modules/msgspec { };
msldap = callPackage ../development/python-modules/msldap { };