1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, opencv3
5}:
6
7buildPythonPackage rec {
8 version = "0.5.3";
9 pname = "imutils";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "857af6169d90e4a0a814130b9b107f5d611150ce440107e1c1233521c6fb1e2b";
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}