python312Packages.ultralytics: 8.3.92 -> 8.3.94 (#391884)

This commit is contained in:
Arne Keller
2025-03-23 10:49:36 +01:00
committed by GitHub
@@ -8,6 +8,7 @@
setuptools,
# dependencies
lap,
matplotlib,
opencv-python,
pandas,
@@ -31,14 +32,14 @@
buildPythonPackage rec {
pname = "ultralytics";
version = "8.3.92";
version = "8.3.94";
pyproject = true;
src = fetchFromGitHub {
owner = "ultralytics";
repo = "ultralytics";
tag = "v${version}";
hash = "sha256-+SwhQVEl7tLrhwuCruVLAtVS3U/RJb0ysIKG3bmuZk4=";
hash = "sha256-pDUF/uqtMA9xMK7G9Ka2XSr55jEka7DhWX9d2S3n6KA=";
};
build-system = [ setuptools ];
@@ -48,6 +49,7 @@ buildPythonPackage rec {
];
dependencies = [
lap
matplotlib
opencv-python
pandas
@@ -116,7 +118,7 @@ buildPythonPackage rec {
meta = {
homepage = "https://github.com/ultralytics/ultralytics";
changelog = "https://github.com/ultralytics/ultralytics/releases/tag/v${version}";
changelog = "https://github.com/ultralytics/ultralytics/releases/tag/${src.tag}";
description = "Train YOLO models for computer vision tasks";
mainProgram = "yolo";
license = lib.licenses.agpl3Only;