55 lines
1.0 KiB
Nix
55 lines
1.0 KiB
Nix
{
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
lib,
|
|
packaging,
|
|
pillow,
|
|
tesseract,
|
|
replaceVars,
|
|
pytestCheckHook,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pytesseract";
|
|
version = "0.3.13";
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "madmaze";
|
|
repo = "pytesseract";
|
|
tag = "v${version}";
|
|
hash = "sha256-gQMeck6ojlIwyiOCBBhzHHrjQfBMelVksVGd+fyxWZk=";
|
|
};
|
|
|
|
patches = [
|
|
(replaceVars ./tesseract-binary.patch {
|
|
drv = tesseract;
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [ setuptools ];
|
|
|
|
buildInputs = [ tesseract ];
|
|
|
|
propagatedBuildInputs = [
|
|
packaging
|
|
pillow
|
|
];
|
|
disabledTests = [
|
|
# https://github.com/madmaze/pytesseract/pull/559
|
|
"incorrect_tessdata_dir"
|
|
"invalid_tessdata_dir"
|
|
];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://pypi.org/project/pytesseract/";
|
|
license = licenses.asl20;
|
|
description = "Python wrapper for Google Tesseract";
|
|
mainProgram = "pytesseract";
|
|
maintainers = [ ];
|
|
};
|
|
}
|