Unverified Commit cc832eaa authored by Arne Keller's avatar Arne Keller Committed by GitHub
Browse files

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

parents dbb1c032 9f19e24a
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -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;