1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, opencv3
5}:
6
7buildPythonPackage rec {
8 version = "0.5.2";
9 pname = "imutils";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "1d2bdf373e3e6cfbdc113d4e91547d3add3774d8722c8d4f225fa39586fb8076";
14 };
15
16 propagatedBuildInputs = [ opencv3 ];
17
18 # no tests
19 doCheck = false;
20
21 meta = with stdenv.lib; {
22 homepage = https://github.com/jrosebr1/imutils;
23 description = "A series of convenience functions to make basic image processing functions";
24 license = licenses.mit;
25 maintainers = [ maintainers.costrouc ];
26 };
27}