blob: 8a1ec92d2d4303010ef39a35b5f682aaf9c27a0d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
{
lib,
buildPythonPackage,
fetchPypi,
opencv4,
}:
buildPythonPackage rec {
version = "0.5.4";
format = "setuptools";
pname = "imutils";
src = fetchPypi {
inherit pname version;
sha256 = "03827a9fca8b5c540305c0844a62591cf35a0caec199cb0f2f0a4a0fb15d8f24";
};
propagatedBuildInputs = [ opencv4 ];
# no tests
doCheck = false;
pythonImportsCheck = [
"imutils"
"imutils.video"
"imutils.io"
"imutils.feature"
"imutils.face_utils"
];
meta = {
homepage = "https://github.com/jrosebr1/imutils";
description = "Series of convenience functions to make basic image processing functions";
mainProgram = "range-detector";
license = lib.licenses.mit;
maintainers = [ ];
};
}
|