129 lines
2.5 KiB
Nix
129 lines
2.5 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
|
|
# build-system
|
|
setuptools,
|
|
|
|
# dependencies
|
|
lap,
|
|
matplotlib,
|
|
opencv-python,
|
|
pandas,
|
|
pillow,
|
|
psutil,
|
|
py-cpuinfo,
|
|
pyyaml,
|
|
requests,
|
|
scipy,
|
|
seaborn,
|
|
torch,
|
|
torchvision,
|
|
tqdm,
|
|
ultralytics-thop,
|
|
|
|
# tests
|
|
pytestCheckHook,
|
|
onnx,
|
|
onnxruntime,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "ultralytics";
|
|
version = "8.3.143";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ultralytics";
|
|
repo = "ultralytics";
|
|
tag = "v${version}";
|
|
hash = "sha256-qpFQcGLTEQS7Bt9CvdXgv2JyNfOONS0Cf71dckCrlPw=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
pythonRelaxDeps = [
|
|
"numpy"
|
|
];
|
|
|
|
dependencies = [
|
|
lap
|
|
matplotlib
|
|
opencv-python
|
|
pandas
|
|
pillow
|
|
psutil
|
|
py-cpuinfo
|
|
pyyaml
|
|
requests
|
|
scipy
|
|
scipy
|
|
seaborn
|
|
torch
|
|
torchvision
|
|
tqdm
|
|
ultralytics-thop
|
|
];
|
|
|
|
pythonImportsCheck = [ "ultralytics" ];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
onnx
|
|
onnxruntime
|
|
];
|
|
|
|
enabledTestPaths = [
|
|
# rest of the tests require internet access
|
|
"tests/test_python.py"
|
|
];
|
|
|
|
disabledTests = [
|
|
# also remove the individual tests that require internet
|
|
"test_all_model_yamls"
|
|
"test_data_annotator"
|
|
"test_labels_and_crops"
|
|
"test_model_embeddings"
|
|
"test_model_methods"
|
|
"test_predict_callback_and_setup"
|
|
"test_predict_grey_and_4ch"
|
|
"test_predict_img"
|
|
"test_predict_txt"
|
|
"test_predict_visualize"
|
|
"test_results"
|
|
"test_train_pretrained"
|
|
"test_train_scratch"
|
|
"test_utils_torchutils"
|
|
"test_val"
|
|
"test_workflow"
|
|
"test_yolo_world"
|
|
"test_yolov10"
|
|
"test_yoloe"
|
|
"test_multichannel"
|
|
]
|
|
++ lib.optionals (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64) [
|
|
# Fatal Python error: Aborted
|
|
# onnxruntime/capi/_pybind_state.py", line 32 in <module>
|
|
"test_utils_benchmarks"
|
|
]
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
# Fatal Python error: Aborted
|
|
# ultralytics/utils/checks.py", line 598 in check_imshow
|
|
"test_utils_checks"
|
|
|
|
# RuntimeError: required keyword attribute 'value' has the wrong type
|
|
"test_utils_benchmarks"
|
|
];
|
|
|
|
meta = {
|
|
homepage = "https://github.com/ultralytics/ultralytics";
|
|
changelog = "https://github.com/ultralytics/ultralytics/releases/tag/${src.tag}";
|
|
description = "Train YOLO models for computer vision tasks";
|
|
mainProgram = "yolo";
|
|
license = lib.licenses.agpl3Only;
|
|
maintainers = with lib.maintainers; [ osbm ];
|
|
};
|
|
}
|