Merge pull request #312031 from GaetanLepage/timm

python311Packages.timm: 0.9.16 -> 1.0.3

authored by Nick Cao and committed by GitHub 4102f0ae 1ebe42c8

+7 -7
+7 -7
pkgs/development/python-modules/timm/default.nix
··· 15 15 16 16 buildPythonPackage rec { 17 17 pname = "timm"; 18 - version = "0.9.16"; 18 + version = "1.0.3"; 19 19 pyproject = true; 20 20 21 21 disabled = pythonOlder "3.7"; ··· 24 24 owner = "huggingface"; 25 25 repo = "pytorch-image-models"; 26 26 rev = "refs/tags/v${version}"; 27 - hash = "sha256-IWEDKuI2565Z07q1MxTpzKS+CROPR6SyaD5fKcQ5eXk="; 27 + hash = "sha256-h2J1v2zXUMGRKBBqq+RnxrXKOzlD5RRrVoODWSuj9Ms="; 28 28 }; 29 29 30 - nativeBuildInputs = [ 30 + build-system = [ 31 31 pdm-backend 32 32 ]; 33 33 34 - propagatedBuildInputs = [ 34 + dependencies = [ 35 35 huggingface-hub 36 36 pyyaml 37 37 safetensors ··· 64 64 "timm.data" 65 65 ]; 66 66 67 - meta = with lib; { 67 + meta = { 68 68 description = "PyTorch image models, scripts, and pretrained weights"; 69 69 homepage = "https://huggingface.co/docs/timm/index"; 70 70 changelog = "https://github.com/huggingface/pytorch-image-models/blob/v${version}/README.md#whats-new"; 71 - license = licenses.asl20; 72 - maintainers = with maintainers; [ bcdarwin ]; 71 + license = lib.licenses.asl20; 72 + maintainers = with lib.maintainers; [ bcdarwin ]; 73 73 }; 74 74 }