504525a148
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
69 lines
1.3 KiB
Nix
69 lines
1.3 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pythonOlder
|
|
, pytestCheckHook
|
|
, expecttest
|
|
, pytest-timeout
|
|
, huggingface-hub
|
|
, pyyaml
|
|
, safetensors
|
|
, torch
|
|
, torchvision
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "timm";
|
|
version = "0.9.12";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "huggingface";
|
|
repo = "pytorch-image-models";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-dDd/Sjy4xmJlaAg+fOxxcuX3FX//uJJkW0q3AaeCfns=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
huggingface-hub
|
|
pyyaml
|
|
safetensors
|
|
torch
|
|
torchvision
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
expecttest
|
|
pytestCheckHook
|
|
pytest-timeout
|
|
];
|
|
|
|
pytestFlagsArray = [
|
|
"tests"
|
|
];
|
|
|
|
disabledTestPaths = [
|
|
# Takes too long and also tries to download models
|
|
"tests/test_models.py"
|
|
];
|
|
|
|
disabledTests = [
|
|
# AttributeError: 'Lookahead' object has no attribute '_optimizer_step_pre...
|
|
"test_lookahead"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"timm"
|
|
"timm.data"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "PyTorch image models, scripts, and pretrained weights";
|
|
homepage = "https://huggingface.co/docs/timm/index";
|
|
changelog = "https://github.com/huggingface/pytorch-image-models/blob/v${version}/README.md#whats-new";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ bcdarwin ];
|
|
};
|
|
}
|