depot/third_party/nixpkgs/pkgs/development/python-modules/tesserocr/default.nix
Default email 5e9e1146e1 Project import generated by Copybara.
GitOrigin-RevId: 18036c0be90f4e308ae3ebcab0e14aae0336fe42
2023-08-05 00:07:22 +02:00

62 lines
1.2 KiB
Nix

{ buildPythonPackage
, fetchPypi
, lib
# build dependencies
, cython
, leptonica
, pkg-config
, tesseract4
# propagates
, pillow
# tests
, unittestCheckHook
}:
buildPythonPackage rec {
pname = "tesserocr";
version = "2.6.1";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-pz82cutgQ9ifMS6+40mcBiOsXIqeEquYdBWT+npZNPY=";
};
# 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;
};
}