ocrmypdf: 9.8.0 -> 9.8.2

version bump also fixes build after pikepdf update:
https://github.com/NixOS/nixpkgs/pull/88680
This commit is contained in:
Robert Djubek 2020-06-07 00:17:28 +00:00
parent 0998dc4912
commit 96bfdf2843
No known key found for this signature in database
GPG Key ID: 156C88A5B0A04B2A

View File

@ -12,7 +12,6 @@
, unpaper , unpaper
, substituteAll , substituteAll
}: }:
let let
inherit (python3Packages) buildPythonApplication; inherit (python3Packages) buildPythonApplication;
@ -27,16 +26,17 @@ let
pillow pillow
]; ];
in buildPythonApplication rec { in
buildPythonApplication rec {
pname = "ocrmypdf"; pname = "ocrmypdf";
version = "9.8.0"; version = "9.8.2";
disabled = ! python3Packages.isPy3k; disabled = ! python3Packages.isPy3k;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "jbarlow83"; owner = "jbarlow83";
repo = "OCRmyPDF"; repo = "OCRmyPDF";
rev = "v${version}"; rev = "v${version}";
sha256 = "1l4bwnbd3g0wmdx8yv8hi5wm2z2q67y9mwrvrc4xxmkdrb5y8jcd"; sha256 = "0zff9gsbfaf72p8zbjamn6513czpr7papyh1jy0fz1z2a9h7ya0g";
}; };
nativeBuildInputs = with python3Packages; [ nativeBuildInputs = with python3Packages; [