python3Packages.ultralytics-thop: 2.0.14 -> 2.0.15 (#431075)

This commit is contained in:
Nick Cao
2025-08-05 16:30:15 -04:00
committed by GitHub

View File

@@ -16,14 +16,14 @@
buildPythonPackage rec {
pname = "ultralytics-thop";
version = "2.0.14";
version = "2.0.15";
pyproject = true;
src = fetchFromGitHub {
owner = "ultralytics";
repo = "thop";
tag = "v${version}";
hash = "sha256-Xn01zh0/oaMPqH0FPDKElE0q7di3sDrXYcXCg6I/89E=";
hash = "sha256-1osW/yTyNZWYVqyRBBoT5FOO9nAvZL2Bmo0vJhJcwu8=";
};
build-system = [ setuptools ];
@@ -39,7 +39,7 @@ buildPythonPackage rec {
meta = {
homepage = "https://github.com/ultralytics/thop";
changelog = "https://github.com/ultralytics/thop/releases/tag/v${version}";
changelog = "https://github.com/ultralytics/thop/releases/tag/${src.tag}";
description = "Profile PyTorch models by computing the number of Multiply-Accumulate Operations (MACs) and parameters";
license = lib.licenses.agpl3Only;
maintainers = with lib.maintainers; [ osbm ];