Merge pull request #138294 from antifuchs/ocrmypdf-12-5

ocrmypdf: 12.3.0 -> 12.5.0

authored by

Robert Schütz and committed by
GitHub
efcacf9a 4a849e9d

+4 -4
+4 -4
pkgs/tools/text/ocrmypdf/default.nix
··· 30 30 in 31 31 buildPythonApplication rec { 32 32 pname = "ocrmypdf"; 33 - version = "12.3.0"; 33 + version = "12.5.0"; 34 34 35 35 src = fetchFromGitHub { 36 36 owner = "jbarlow83"; 37 37 repo = "OCRmyPDF"; 38 38 rev = "v${version}"; 39 - sha256 = "122yv3p0v4fbx30zgppcznwnm7svg97gv0sa103xb6zcld68ggn2"; 39 + sha256 = "sha256-g80WedX+TGHE9EJ/RSgOc53PM17V3WZslUNaHoqKTo0="; 40 40 }; 41 41 42 42 nativeBuildInputs = with python3Packages; [ ··· 47 47 48 48 propagatedBuildInputs = with python3Packages; [ 49 49 cffi 50 - chardet 51 50 coloredlogs 52 51 img2pdf 52 + importlib-resources 53 53 pdfminer 54 54 pluggy 55 55 pikepdf ··· 84 84 license = with licenses; [ mpl20 mit ]; 85 85 platforms = platforms.linux; 86 86 maintainers = [ maintainers.kiwi ]; 87 - changelog = "https://github.com/jbarlow83/OCRmyPDF/blob/v${version}/docs/release_notes.rst"; 87 + changelog = "https://github.com/jbarlow83/OCRmyPDF/blob/v${version}/docs/release_notes.rst"; 88 88 }; 89 89 }