about summary refs log tree commit diff
path: root/pkgs/development/python-modules/msg-parser/default.nix
blob: f2ebb4108970c53e6a8f3880ac52f05fcb3d4b47 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
  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 ];
  };
}