lol

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

authored by

Arne Keller and committed by
GitHub
cc832eaa dbb1c032

+5 -3
+5 -3
pkgs/development/python-modules/ultralytics/default.nix
··· 8 8 setuptools, 9 9 10 10 # dependencies 11 + lap, 11 12 matplotlib, 12 13 opencv-python, 13 14 pandas, ··· 31 32 32 33 buildPythonPackage rec { 33 34 pname = "ultralytics"; 34 - version = "8.3.92"; 35 + version = "8.3.94"; 35 36 pyproject = true; 36 37 37 38 src = fetchFromGitHub { 38 39 owner = "ultralytics"; 39 40 repo = "ultralytics"; 40 41 tag = "v${version}"; 41 - hash = "sha256-+SwhQVEl7tLrhwuCruVLAtVS3U/RJb0ysIKG3bmuZk4="; 42 + hash = "sha256-pDUF/uqtMA9xMK7G9Ka2XSr55jEka7DhWX9d2S3n6KA="; 42 43 }; 43 44 44 45 build-system = [ setuptools ]; ··· 48 49 ]; 49 50 50 51 dependencies = [ 52 + lap 51 53 matplotlib 52 54 opencv-python 53 55 pandas ··· 116 118 117 119 meta = { 118 120 homepage = "https://github.com/ultralytics/ultralytics"; 119 - changelog = "https://github.com/ultralytics/ultralytics/releases/tag/v${version}"; 121 + changelog = "https://github.com/ultralytics/ultralytics/releases/tag/${src.tag}"; 120 122 description = "Train YOLO models for computer vision tasks"; 121 123 mainProgram = "yolo"; 122 124 license = lib.licenses.agpl3Only;