depot/third_party/nixpkgs/pkgs/development/python-modules/pytesseract/default.nix
Default email 587713944a Project import generated by Copybara.
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
2024-04-21 17:54:59 +02:00

53 lines
942 B
Nix

{ buildPythonPackage
, fetchFromGitHub
, lib
, packaging
, pillow
, tesseract
, substituteAll
, pytestCheckHook
, setuptools
}:
buildPythonPackage rec {
pname = "pytesseract";
version = "0.3.13";
format = "pyproject";
src = fetchFromGitHub {
owner = "madmaze";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-gQMeck6ojlIwyiOCBBhzHHrjQfBMelVksVGd+fyxWZk=";
};
patches = [
(substituteAll {
src = ./tesseract-binary.patch;
drv = tesseract;
})
];
nativeBuildInputs = [
setuptools
];
buildInputs = [
tesseract
];
propagatedBuildInputs = [
packaging
pillow
];
nativeCheckInputs = [ pytestCheckHook ];
meta = with lib; {
homepage = "https://pypi.org/project/pytesseract/";
license = licenses.asl20;
description = "A Python wrapper for Google Tesseract";
mainProgram = "pytesseract";
maintainers = with maintainers; [ ];
};
}