24fdeddc0a
GitOrigin-RevId: 2768c7d042a37de65bb1b5b3268fc987e534c49d
56 lines
1.1 KiB
Nix
56 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
|
|
# build-system
|
|
setuptools,
|
|
|
|
# dependencies
|
|
filelock,
|
|
fsspec,
|
|
packaging,
|
|
pyyaml,
|
|
requests,
|
|
tqdm,
|
|
typing-extensions,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "huggingface-hub";
|
|
version = "0.26.1";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "huggingface";
|
|
repo = "huggingface_hub";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-tro4Cvjyjc1vfAvYnfeKjh8ej83Z8l4cKe8SqIBVLXg=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
filelock
|
|
fsspec
|
|
packaging
|
|
pyyaml
|
|
requests
|
|
tqdm
|
|
typing-extensions
|
|
];
|
|
|
|
# Tests require network access.
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "huggingface_hub" ];
|
|
|
|
meta = {
|
|
description = "Download and publish models and other files on the huggingface.co hub";
|
|
mainProgram = "huggingface-cli";
|
|
homepage = "https://github.com/huggingface/huggingface_hub";
|
|
changelog = "https://github.com/huggingface/huggingface_hub/releases/tag/v${version}";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ GaetanLepage ];
|
|
};
|
|
}
|