summary refs log tree commit diff
path: root/pkgs/development/python-modules/imutils/default.nix
blob: f402f913f38c316aa6ccb03e0417edae1edeb963 (plain) (blame)
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
{ lib
, buildPythonPackage
, fetchPypi
, opencv3
}:

buildPythonPackage rec {
  version = "0.5.3";
  pname = "imutils";

  src = fetchPypi {
    inherit pname version;
    sha256 = "857af6169d90e4a0a814130b9b107f5d611150ce440107e1c1233521c6fb1e2b";
  };

  propagatedBuildInputs = [ opencv3 ];

  # no tests
  doCheck = false;

  meta = with lib; {
    homepage = "https://github.com/jrosebr1/imutils";
    description = "A series of convenience functions to make basic image processing functions";
    license = licenses.mit;
    maintainers = [ maintainers.costrouc ];
  };
}