mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
pythonPackages.imutils: init at 0.5.1
This commit is contained in:
parent
489d120ef5
commit
77e8b33cb7
2 changed files with 29 additions and 0 deletions
27
pkgs/development/python-modules/imutils/default.nix
Normal file
27
pkgs/development/python-modules/imutils/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue