Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

python310Packages.ocrmypdf: 14.3.0 -> 14.4.0

Diff: https://github.com/ocrmypdf/OCRmyPDF/compare/v14.3.0...v14.4.0

Changelog: https://github.com/ocrmypdf/OCRmyPDF/blob/v14.4.0/docs/release_notes.rst

+4 -4
+4 -4
pkgs/development/python-modules/ocrmypdf/default.nix
··· 1 { lib 2 , buildPythonPackage 3 - , coloredlogs 4 , deprecation 5 , fetchFromGitHub 6 , ghostscript ··· 17 , pytest-xdist 18 , pytestCheckHook 19 , pythonOlder 20 , reportlab 21 , setuptools 22 , setuptools-scm ··· 30 31 buildPythonPackage rec { 32 pname = "ocrmypdf"; 33 - version = "14.3.0"; 34 35 disabled = pythonOlder "3.8"; 36 ··· 46 postFetch = '' 47 rm "$out/.git_archival.txt" 48 ''; 49 - hash = "sha256-OUz19N2YIl7iwayjulx0v1K00jB5SdWo8m5XiJ9BDSs="; 50 }; 51 52 SETUPTOOLS_SCM_PRETEND_VERSION = version; ··· 69 ]; 70 71 propagatedBuildInputs = [ 72 - coloredlogs 73 deprecation 74 img2pdf 75 packaging ··· 78 pillow 79 pluggy 80 reportlab 81 tqdm 82 ] ++ lib.optionals (pythonOlder "3.9") [ 83 importlib-resources
··· 1 { lib 2 , buildPythonPackage 3 , deprecation 4 , fetchFromGitHub 5 , ghostscript ··· 16 , pytest-xdist 17 , pytestCheckHook 18 , pythonOlder 19 + , rich 20 , reportlab 21 , setuptools 22 , setuptools-scm ··· 30 31 buildPythonPackage rec { 32 pname = "ocrmypdf"; 33 + version = "14.4.0"; 34 35 disabled = pythonOlder "3.8"; 36 ··· 46 postFetch = '' 47 rm "$out/.git_archival.txt" 48 ''; 49 + hash = "sha256-i1ZUBKR8dJXZkALUFwkzYcjtZ5Li66DfD2fupCGRQC4="; 50 }; 51 52 SETUPTOOLS_SCM_PRETEND_VERSION = version; ··· 69 ]; 70 71 propagatedBuildInputs = [ 72 deprecation 73 img2pdf 74 packaging ··· 77 pillow 78 pluggy 79 reportlab 80 + rich 81 tqdm 82 ] ++ lib.optionals (pythonOlder "3.9") [ 83 importlib-resources