lol

pythonPackages.msg-parser: init at 1.2.0

authored by

happysalada and committed by
Yt
e1e97d0a f742512c

+43
+41
pkgs/development/python-modules/msg-parser/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , pythonOlder 5 + # dependencies 6 + , olefile 7 + # test dependencies 8 + , pytestCheckHook 9 + }: 10 + let 11 + pname = "msg-parser"; 12 + version = "1.2.0"; 13 + in 14 + buildPythonPackage { 15 + inherit pname version; 16 + format = "setuptools"; 17 + 18 + disabled = pythonOlder "3.8"; 19 + 20 + src = fetchFromGitHub { 21 + owner = "vikramarsid"; 22 + repo = "msg_parser"; 23 + rev = "4100b553b24895b489ebd414c771933fc1e558d3"; 24 + hash = "sha256-srDk6w8nzt0dyGCFQWfVCnKb4LawHoqoHX6d1l1dAmM="; 25 + }; 26 + 27 + propagatedBuildInputs = [ 28 + olefile 29 + ]; 30 + 31 + nativeCheckInputs = [ 32 + pytestCheckHook 33 + ]; 34 + 35 + meta = with lib; { 36 + description = "Python module to read, parse and converting Microsoft Outlook MSG E-Mail files."; 37 + homepage = "https://github.com/vikramarsid/msg_parser"; 38 + license = licenses.bsd2; 39 + maintainers = with maintainers; [ happysalada ]; 40 + }; 41 + }
+2
pkgs/top-level/python-packages.nix
··· 6482 6482 6483 6483 msgpack-numpy = callPackage ../development/python-modules/msgpack-numpy { }; 6484 6484 6485 + msg-parser = callPackage ../development/python-modules/msg-parser { }; 6486 + 6485 6487 msgspec = callPackage ../development/python-modules/msgspec { }; 6486 6488 6487 6489 msldap = callPackage ../development/python-modules/msldap { };