78 lines
1.5 KiB
Nix
78 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
|
|
# build-system
|
|
pdm-backend,
|
|
|
|
# dependencies
|
|
huggingface-hub,
|
|
pyyaml,
|
|
safetensors,
|
|
torch,
|
|
torchvision,
|
|
|
|
# tests
|
|
expecttest,
|
|
pytestCheckHook,
|
|
pytest-timeout,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "timm";
|
|
version = "1.0.17";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "huggingface";
|
|
repo = "pytorch-image-models";
|
|
tag = "v${version}";
|
|
hash = "sha256-NWWKDWcwRrQ2lrNSbkA2xepAoPP7+0G7g7eIjGLZSCw=";
|
|
};
|
|
|
|
build-system = [ pdm-backend ];
|
|
|
|
dependencies = [
|
|
huggingface-hub
|
|
pyyaml
|
|
safetensors
|
|
torch
|
|
torchvision
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
expecttest
|
|
pytestCheckHook
|
|
pytest-timeout
|
|
];
|
|
|
|
enabledTestPaths = [ "tests" ];
|
|
|
|
disabledTests = lib.optionals stdenv.hostPlatform.isDarwin [
|
|
# torch._dynamo.exc.BackendCompilerFailed: backend='inductor' raised:
|
|
# CppCompileError: C++ compile error
|
|
# OpenMP support not found.
|
|
"test_kron"
|
|
];
|
|
|
|
disabledTestPaths = [
|
|
# Takes too long and also tries to download models
|
|
"tests/test_models.py"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"timm"
|
|
"timm.data"
|
|
];
|
|
|
|
meta = {
|
|
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 = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ bcdarwin ];
|
|
};
|
|
}
|