lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python312Packages.extract-msg: use nixfmt

+18 -23
+18 -23
pkgs/development/python-modules/extract-msg/default.nix
··· 1 - { lib 2 - , beautifulsoup4 3 - , buildPythonPackage 4 - , compressed-rtf 5 - , ebcdic 6 - , fetchFromGitHub 7 - , olefile 8 - , pytestCheckHook 9 - , pythonOlder 10 - , pythonRelaxDepsHook 11 - , red-black-tree-mod 12 - , rtfde 13 - , setuptools 14 - , tzlocal 1 + { 2 + lib, 3 + beautifulsoup4, 4 + buildPythonPackage, 5 + compressed-rtf, 6 + ebcdic, 7 + fetchFromGitHub, 8 + olefile, 9 + pytestCheckHook, 10 + pythonOlder, 11 + pythonRelaxDepsHook, 12 + red-black-tree-mod, 13 + rtfde, 14 + setuptools, 15 + tzlocal, 15 16 }: 16 17 17 18 buildPythonPackage rec { ··· 48 49 tzlocal 49 50 ]; 50 51 51 - nativeCheckInputs = [ 52 - pytestCheckHook 53 - ]; 52 + nativeCheckInputs = [ pytestCheckHook ]; 54 53 55 - pythonImportsCheck = [ 56 - "extract_msg" 57 - ]; 54 + pythonImportsCheck = [ "extract_msg" ]; 58 55 59 - pytestFlagsArray = [ 60 - "extract_msg_tests/*.py" 61 - ]; 56 + pytestFlagsArray = [ "extract_msg_tests/*.py" ]; 62 57 63 58 meta = with lib; { 64 59 description = "Extracts emails and attachments saved in Microsoft Outlook's .msg files";