Merge pull request #299722 from fabaff/rtfde-fix

python312Packages.extract-msg: 0.48.3 -> 0.48.4, python312Packages.rtfde: relax lark

authored by Fabian Affolter and committed by GitHub b0dc996a a2cecca4

+12 -6
+4 -4
pkgs/development/python-modules/extract-msg/default.nix
··· 16 17 buildPythonPackage rec { 18 pname = "extract-msg"; 19 - version = "0.48.3"; 20 pyproject = true; 21 22 disabled = pythonOlder "3.7"; ··· 25 owner = "TeamMsgExtractor"; 26 repo = "msg-extractor"; 27 rev = "refs/tags/v${version}"; 28 - hash = "sha256-oN5blYU8LR2O1LEb6naL33UXjBk9xpINl4h6HSaN7PQ="; 29 }; 30 31 pythonRelaxDeps = [ ··· 33 "red-black-tree-mod" 34 ]; 35 36 - nativeBuildInputs = [ 37 pythonRelaxDepsHook 38 setuptools 39 ]; 40 41 - propagatedBuildInputs = [ 42 beautifulsoup4 43 compressed-rtf 44 ebcdic
··· 16 17 buildPythonPackage rec { 18 pname = "extract-msg"; 19 + version = "0.48.4"; 20 pyproject = true; 21 22 disabled = pythonOlder "3.7"; ··· 25 owner = "TeamMsgExtractor"; 26 repo = "msg-extractor"; 27 rev = "refs/tags/v${version}"; 28 + hash = "sha256-xX25RVtkUFn+j9rALOHQOTRzqJXiEMn7i9pxCJ8so4U="; 29 }; 30 31 pythonRelaxDeps = [ ··· 33 "red-black-tree-mod" 34 ]; 35 36 + build-system = [ 37 pythonRelaxDepsHook 38 setuptools 39 ]; 40 41 + dependencies = [ 42 beautifulsoup4 43 compressed-rtf 44 ebcdic
+8 -2
pkgs/development/python-modules/rtfde/default.nix
··· 23 hash = "sha256-ai9JQ3gphY/IievBNdHiblIpc0IPS9wp7CVvBIRzG/4="; 24 }; 25 26 - nativeBuildInputs = [ 27 setuptools 28 ]; 29 30 - propagatedBuildInputs = [ 31 lark 32 oletools 33 ];
··· 23 hash = "sha256-ai9JQ3gphY/IievBNdHiblIpc0IPS9wp7CVvBIRzG/4="; 24 }; 25 26 + postPatch = '' 27 + # https://github.com/seamustuohy/RTFDE/issues/31 28 + substituteInPlace setup.py \ 29 + --replace-fail "==" ">=" 30 + ''; 31 + 32 + build-system = [ 33 setuptools 34 ]; 35 36 + dependencies = [ 37 lark 38 oletools 39 ];