python3Packages.pytesseract: 0.3.8 -> 0.3.9
ChangeLog: https://github.com/madmaze/pytesseract/releases/tag/v0.3.9 Note: even though there's a 0.3.10 on GH already, it's not published to PyPI.
This commit is contained in:
parent
b13005f624
commit
4553b045ae
1 changed files with 4 additions and 4 deletions
|
@ -1,12 +1,12 @@
|
||||||
{ buildPythonPackage, fetchPypi, lib, pillow, tesseract, substituteAll }:
|
{ buildPythonPackage, fetchPypi, lib, pillow, tesseract, substituteAll, packaging }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "pytesseract";
|
pname = "pytesseract";
|
||||||
version = "0.3.8";
|
version = "0.3.9";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "sha256-YUigHkN1dghi6PVupxjiK10TsoFFTfRuqNrJgHeT/Fo=";
|
sha256 = "sha256-fiuvx/SNG7cUQ85GM6VvXiGSWpjyIKNsM2KX7c0ZVtA=";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
|
@ -17,7 +17,7 @@ buildPythonPackage rec {
|
||||||
];
|
];
|
||||||
|
|
||||||
buildInputs = [ tesseract ];
|
buildInputs = [ tesseract ];
|
||||||
propagatedBuildInputs = [ pillow ];
|
propagatedBuildInputs = [ pillow packaging ];
|
||||||
|
|
||||||
# the package doesn't have any tests.
|
# the package doesn't have any tests.
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
Loading…
Reference in a new issue