nixpkgs/pkgs/development/python-modules/imutils/default.nix
Ihar Hrachyshka 567e8dfd8e
treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

38 lines
745 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
opencv4,
}:
buildPythonPackage rec {
version = "0.5.4";
format = "setuptools";
pname = "imutils";
src = fetchPypi {
inherit pname version;
sha256 = "03827a9fca8b5c540305c0844a62591cf35a0caec199cb0f2f0a4a0fb15d8f24";
};
propagatedBuildInputs = [ opencv4 ];
# no tests
doCheck = false;
pythonImportsCheck = [
"imutils"
"imutils.video"
"imutils.io"
"imutils.feature"
"imutils.face_utils"
];
meta = {
homepage = "https://github.com/jrosebr1/imutils";
description = "Series of convenience functions to make basic image processing functions";
mainProgram = "range-detector";
license = lib.licenses.mit;
maintainers = [ ];
};
}