Merge pull request #112758 from r-ryantm/auto-update/python3.7-imutils

python37Packages.imutils: 0.5.3 -> 0.5.4
This commit is contained in:
Martin Weinelt 2021-02-12 00:53:17 +01:00 committed by GitHub
commit ef6030dc72
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,12 +5,12 @@
}: }:
buildPythonPackage rec { buildPythonPackage rec {
version = "0.5.3"; version = "0.5.4";
pname = "imutils"; pname = "imutils";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "857af6169d90e4a0a814130b9b107f5d611150ce440107e1c1233521c6fb1e2b"; sha256 = "03827a9fca8b5c540305c0844a62591cf35a0caec199cb0f2f0a4a0fb15d8f24";
}; };
propagatedBuildInputs = [ opencv3 ]; propagatedBuildInputs = [ opencv3 ];
@ -18,6 +18,14 @@ buildPythonPackage rec {
# no tests # no tests
doCheck = false; doCheck = false;
pythonImportsCheck = [
"imutils"
"imutils.video"
"imutils.io"
"imutils.feature"
"imutils.face_utils"
];
meta = with lib; { meta = with lib; {
homepage = "https://github.com/jrosebr1/imutils"; homepage = "https://github.com/jrosebr1/imutils";
description = "A series of convenience functions to make basic image processing functions"; description = "A series of convenience functions to make basic image processing functions";