nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

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

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