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

28 lines
586 B
Nix
Raw Normal View History

2018-10-10 06:58:37 +02:00
{ stdenv
, buildPythonPackage
, fetchPypi
, opencv3
}:
buildPythonPackage rec {
2019-01-17 16:13:00 +01:00
version = "0.5.2";
2018-10-10 06:58:37 +02:00
pname = "imutils";
src = fetchPypi {
inherit pname version;
2019-01-17 16:13:00 +01:00
sha256 = "1d2bdf373e3e6cfbdc113d4e91547d3add3774d8722c8d4f225fa39586fb8076";
2018-10-10 06:58:37 +02: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 ];
};
}