depot/third_party/nixpkgs/pkgs/development/python-modules/tesserocr/default.nix

59 lines
1.2 KiB
Nix
Raw Normal View History

{
buildPythonPackage,
fetchPypi,
lib,
# build dependencies
cython,
leptonica,
pkg-config,
tesseract4,
# propagates
pillow,
# tests
unittestCheckHook,
}:
buildPythonPackage rec {
pname = "tesserocr";
version = "2.6.3";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-RMHE73vcKGz6FEzhoJfoHDMp9KQ1CbyElKGrhSM4xuE=";
};
# https://github.com/sirfz/tesserocr/issues/314
postPatch = ''
sed -i '/allheaders.h/a\ pass\n\ncdef extern from "leptonica/pix_internal.h" nogil:' tesseract.pxd
'';
nativeBuildInputs = [
cython
pkg-config
];
buildInputs = [
leptonica
tesseract4
];
propagatedBuildInputs = [ pillow ];
pythonImportsCheck = [ "tesserocr" ];
nativeCheckInputs = [ unittestCheckHook ];
meta = with lib; {
changelog = "https://github.com/sirfz/tesserocr/releases/tag/v${version}";
description = "A simple, Pillow-friendly, wrapper around the tesseract-ocr API for Optical Character Recognition (OCR)";
homepage = "https://github.com/sirfz/tesserocr";
license = licenses.mit;
maintainers = with maintainers; [ mtrsk ];
platforms = platforms.linux;
};
}