nixpkgs/pkgs/tools/text/ocrmypdf/default.nix

91 lines
1.8 KiB
Nix
Raw Normal View History

2019-03-14 03:13:25 +00:00
{ fetchFromGitHub
, ghostscript
, img2pdf
, jbig2enc
, leptonica
, pngquant
, python3
, python3Packages
, qpdf
2021-02-08 15:52:01 +00:00
, lib
, stdenv
2019-03-14 03:13:25 +00:00
, tesseract4
, unpaper
2020-01-22 00:14:49 +00:00
, substituteAll
2019-03-14 03:13:25 +00:00
}:
let
inherit (python3Packages) buildPythonApplication;
runtimeDeps = with python3Packages; [
ghostscript
jbig2enc
leptonica
pngquant
qpdf
tesseract4
unpaper
pillow
];
in
buildPythonApplication rec {
2019-03-14 03:13:25 +00:00
pname = "ocrmypdf";
2021-04-14 20:33:19 +00:00
version = "11.7.3";
2019-03-14 03:13:25 +00:00
disabled = ! python3Packages.isPy3k;
src = fetchFromGitHub {
owner = "jbarlow83";
repo = "OCRmyPDF";
rev = "v${version}";
2021-04-14 20:33:19 +00:00
sha256 = "0gs2w9kl5wwrs0hx2sivq3pdvpf3lkaifblwfbz5g31yl770blji";
2019-03-14 03:13:25 +00:00
};
nativeBuildInputs = with python3Packages; [
setuptools
setuptools-scm-git-archive
setuptools-scm
2019-03-14 03:13:25 +00:00
];
propagatedBuildInputs = with python3Packages; [
cffi
chardet
2020-07-09 12:39:31 +00:00
coloredlogs
2019-03-14 03:13:25 +00:00
img2pdf
pdfminer
2020-07-09 12:39:31 +00:00
pluggy
2019-03-14 03:13:25 +00:00
pikepdf
pillow
2019-03-14 03:13:25 +00:00
reportlab
setuptools
tqdm
2019-03-14 03:13:25 +00:00
];
checkInputs = with python3Packages; [
pypdf2
pytest
pytest-helpers-namespace
pytest_xdist
2021-02-08 15:52:01 +00:00
pytest-cov
2019-03-14 03:13:25 +00:00
python-xmp-toolkit
2020-07-09 12:39:31 +00:00
pytestCheckHook
2019-03-14 03:13:25 +00:00
] ++ runtimeDeps;
2020-01-22 00:14:49 +00:00
patches = [
(substituteAll {
src = ./liblept.patch;
2021-01-15 09:19:50 +00:00
liblept = "${lib.getLib leptonica}/lib/liblept${stdenv.hostPlatform.extensions.sharedLibrary}";
2020-01-22 00:14:49 +00:00
})
];
2019-03-14 03:13:25 +00:00
2021-01-15 09:19:50 +00:00
makeWrapperArgs = [ "--prefix PATH : ${lib.makeBinPath [ ghostscript jbig2enc pngquant qpdf tesseract4 unpaper ]}" ];
meta = with lib; {
2019-03-14 03:13:25 +00:00
homepage = "https://github.com/jbarlow83/OCRmyPDF";
description = "Adds an OCR text layer to scanned PDF files, allowing them to be searched";
2021-02-08 15:52:01 +00:00
license = with licenses; [ mpl20 mit ];
2019-03-14 03:13:25 +00:00
platforms = platforms.linux;
maintainers = [ maintainers.kiwi ];
2021-04-14 20:33:19 +00:00
changelog = "https://github.com/jbarlow83/OCRmyPDF/blob/v${version}/docs/release_notes.rst";
2019-03-14 03:13:25 +00:00
};
}