mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
python3Packages.pytesseract: propagate packaging
This commit is contained in:
parent
659f92160d
commit
8e5e5e1de2
@ -1,8 +1,9 @@
|
||||
{ buildPythonPackage, fetchPypi, lib, pillow, tesseract, substituteAll }:
|
||||
{ buildPythonPackage, fetchPypi, lib, packaging, pillow, tesseract, substituteAll }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pytesseract";
|
||||
version = "0.3.9";
|
||||
format = "pyproject";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
@ -16,8 +17,14 @@ buildPythonPackage rec {
|
||||
})
|
||||
];
|
||||
|
||||
buildInputs = [ tesseract ];
|
||||
propagatedBuildInputs = [ pillow ];
|
||||
buildInputs = [
|
||||
tesseract
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
packaging
|
||||
pillow
|
||||
];
|
||||
|
||||
# the package doesn't have any tests.
|
||||
doCheck = false;
|
||||
|
Loading…
Reference in New Issue
Block a user