From c34bd548e9cf15a4be7560b757eb5c88b6dc8216 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Mon, 29 Jul 2024 07:46:07 +0200 Subject: [PATCH] python312Packages.timm: 1.0.7 -> 1.0.8 Diff: https://github.com/huggingface/pytorch-image-models/compare/refs/tags/v1.0.7...v1.0.8 Changelog: https://github.com/huggingface/pytorch-image-models/blob/v1.0.8/README.md#whats-new --- pkgs/development/python-modules/timm/default.nix | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/timm/default.nix b/pkgs/development/python-modules/timm/default.nix index a02c90152435..af86c57bae64 100644 --- a/pkgs/development/python-modules/timm/default.nix +++ b/pkgs/development/python-modules/timm/default.nix @@ -3,13 +3,18 @@ buildPythonPackage, pythonOlder, fetchFromGitHub, + + # build-system pdm-backend, + + # dependencies huggingface-hub, - numpy, pyyaml, safetensors, torch, torchvision, + + # checks expecttest, pytestCheckHook, pytest-timeout, @@ -17,7 +22,7 @@ buildPythonPackage rec { pname = "timm"; - version = "1.0.7"; + version = "1.0.8"; pyproject = true; disabled = pythonOlder "3.8"; @@ -26,14 +31,13 @@ buildPythonPackage rec { owner = "huggingface"; repo = "pytorch-image-models"; rev = "refs/tags/v${version}"; - hash = "sha256-0o88gOZvHXblGPwyRIz2D3sD7wdg0J0knrAFlognEOY="; + hash = "sha256-z7v1CTwIqdF8xhfGa2mtFi0sFjhOhM7X/q1OQ5qHA7c="; }; build-system = [ pdm-backend ]; dependencies = [ huggingface-hub - numpy pyyaml safetensors torch