Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions pkgs/development/python-modules/ultralytics/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
setuptools,

# dependencies
lap,
matplotlib,
opencv-python,
pandas,
Expand All @@ -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 ];
Expand All @@ -48,6 +49,7 @@ buildPythonPackage rec {
];

dependencies = [
lap
matplotlib
opencv-python
pandas
Expand Down Expand Up @@ -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;
Expand Down