nixpkgs/pkgs/development/python-modules/imutils/default.nix

28 lines
586 B
Nix
Raw Normal View History

2018-10-10 04:58:37 +00:00
{ stdenv
, buildPythonPackage
, fetchPypi
, opencv3
}:
buildPythonPackage rec {
2019-10-16 09:43:08 +00:00
version = "0.5.3";
2018-10-10 04:58:37 +00:00
pname = "imutils";
src = fetchPypi {
inherit pname version;
2019-10-16 09:43:08 +00:00
sha256 = "857af6169d90e4a0a814130b9b107f5d611150ce440107e1c1233521c6fb1e2b";
2018-10-10 04:58:37 +00:00
};
propagatedBuildInputs = [ opencv3 ];
# no tests
doCheck = false;
meta = with stdenv.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 ];
};
}