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