depot/third_party/nixpkgs/pkgs/development/python-modules/imutils/default.nix
Default email 5e9e1146e1 Project import generated by Copybara.
GitOrigin-RevId: 18036c0be90f4e308ae3ebcab0e14aae0336fe42
2023-08-05 00:07:22 +02:00

35 lines
686 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, opencv3
}:
buildPythonPackage rec {
version = "0.5.4";
pname = "imutils";
src = fetchPypi {
inherit pname version;
sha256 = "03827a9fca8b5c540305c0844a62591cf35a0caec199cb0f2f0a4a0fb15d8f24";
};
propagatedBuildInputs = [ opencv3 ];
# no tests
doCheck = false;
pythonImportsCheck = [
"imutils"
"imutils.video"
"imutils.io"
"imutils.feature"
"imutils.face_utils"
];
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 = [ ];
};
}