summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-pytesseract/package.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-pytesseract/package.py b/var/spack/repos/builtin/packages/py-pytesseract/package.py
new file mode 100644
index 0000000000..dca84a1ece
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-pytesseract/package.py
@@ -0,0 +1,19 @@
+# Copyright 2013-2022 Lawrence Livermore National Security, LLC and other
+# Spack Project Developers. See the top-level COPYRIGHT file for details.
+#
+# SPDX-License-Identifier: (Apache-2.0 OR MIT)
+
+from spack.package import *
+
+
+class PyPytesseract(PythonPackage):
+ """Python-tesseract is an Optical Character Recognition (OCR) Tool for python."""
+
+ homepage = "https://github.com/madmaze/pytesseract"
+ pypi = "pytesseract/pytesseract-0.3.8.tar.gz"
+
+ version("0.3.8", sha256="6148a01e4375760862e8f56ea718e22b5d13b281454df46ea8dac9807793fc5a")
+
+ depends_on("python@3.6:", type=("build", "run"))
+ depends_on("py-setuptools", type="build")
+ depends_on("pil", type=("build", "run"))