python3Packages.pytesseract: 0.3.0 -> 0.3.1
https://github.com/madmaze/pytesseract/releases/tag/v0.3.1
This commit is contained in:
parent
6f802abc13
commit
b43892e767
@ -2,11 +2,11 @@
|
|||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "pytesseract";
|
pname = "pytesseract";
|
||||||
version = "0.3.0";
|
version = "0.3.1";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "0n9vasm5fp25fmr9ns9i3bf4kri63s1mvmjgc6q8w7rx840ww7df";
|
sha256 = "1j7d4aa6v1nd3pd1vrfmkv8mbmw0x78cjfpkq3nxpy1r4hj5nwq3";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
@ -24,7 +24,7 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = https://pypi.org/project/pytesseract/;
|
homepage = https://pypi.org/project/pytesseract/;
|
||||||
license = licenses.gpl3;
|
license = licenses.asl20;
|
||||||
description = "A Python wrapper for Google Tesseract";
|
description = "A Python wrapper for Google Tesseract";
|
||||||
maintainers = with maintainers; [ ma27 ];
|
maintainers = with maintainers; [ ma27 ];
|
||||||
};
|
};
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
diff --git a/src/pytesseract.py b/src/pytesseract.py
|
diff --git a/src/pytesseract.py b/src/pytesseract.py
|
||||||
index 32713cf..5f9209d 100755
|
index 132f59b..f161e5c 100755
|
||||||
--- a/src/pytesseract.py
|
--- a/src/pytesseract.py
|
||||||
+++ b/src/pytesseract.py
|
+++ b/src/pytesseract.py
|
||||||
@@ -25,7 +25,7 @@ if numpy_installed:
|
@@ -23,7 +23,7 @@ except ImportError:
|
||||||
from numpy import ndarray
|
import Image
|
||||||
|
|
||||||
|
|
||||||
# CHANGE THIS IF TESSERACT IS NOT IN YOUR PATH, OR IS NAMED DIFFERENTLY
|
|
||||||
-tesseract_cmd = 'tesseract'
|
-tesseract_cmd = 'tesseract'
|
||||||
+tesseract_cmd = '@drv@/bin/tesseract'
|
+tesseract_cmd = '@drv@/bin/tesseract'
|
||||||
RGB_MODE = 'RGB'
|
|
||||||
OSD_KEYS = {
|
numpy_installed = find_loader('numpy') is not None
|
||||||
'Page number': ('page_num', int),
|
if numpy_installed:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user