pythonPackages.imutils: init at 0.5.1

This commit is contained in:
Chris Ostrouchov 2018-10-10 00:58:37 -04:00 committed by Frederik Rietdijk
parent 489d120ef5
commit 77e8b33cb7
2 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, opencv3
}:
buildPythonPackage rec {
version = "0.5.1";
pname = "imutils";
src = fetchPypi {
inherit pname version;
sha256 = "37d17adc9e71386c59b28f4ef5972ef6fe0023714fa1a652b8edc83f7ce0654c";
};
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 ];
};
}

View file

@ -360,6 +360,8 @@ in {
i3ipc = callPackage ../development/python-modules/i3ipc { };
imutils = callPackage ../development/python-modules/imutils { };
intelhex = callPackage ../development/python-modules/intelhex { };
jira = callPackage ../development/python-modules/jira { };