python3Packages.supervision: init at 0.29.0.post0

This commit is contained in:
Mahyar Mirrashed
2026-06-21 14:09:58 -05:00
parent bdf3ed93ed
commit b3e81dcd23
2 changed files with 66 additions and 0 deletions
@@ -0,0 +1,64 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
# build-system
setuptools,
# dependencies
defusedxml,
matplotlib,
numpy,
opencv-python,
pillow,
pydeprecate,
pyyaml,
requests,
scipy,
tqdm,
}:
buildPythonPackage (finalAttrs: {
pname = "supervision";
version = "0.29.0.post0";
pyproject = true;
__structuredAttrs = true;
src = fetchFromGitHub {
owner = "roboflow";
repo = "supervision";
tag = finalAttrs.version;
hash = "sha256-Pug95Srb8dv+3QctaZzF5Gz88eaOmlw4OkZWI7QFsXI=";
};
build-system = [
setuptools
];
dependencies = [
defusedxml
matplotlib
numpy
opencv-python
pillow
pydeprecate
pyyaml
requests
scipy
tqdm
];
# Tests require network access and GPU/model resources.
doCheck = false;
pythonImportsCheck = [ "supervision" ];
meta = {
description = "Set of easy-to-use utils that will come in handy in any Computer Vision project";
homepage = "https://github.com/roboflow/supervision";
changelog = "https://github.com/roboflow/supervision/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ mahyarmirrashed ];
};
})
+2
View File
@@ -19252,6 +19252,8 @@ self: super: with self; {
supervise-api = callPackage ../development/python-modules/supervise-api { };
supervision = callPackage ../development/python-modules/supervision { };
supervisor = callPackage ../development/python-modules/supervisor { };
sure = callPackage ../development/python-modules/sure { };