2ce5db779a
GitOrigin-RevId: 48037fd90426e44e4bf03e6479e88a11453b9b66
48 lines
1.1 KiB
Nix
48 lines
1.1 KiB
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, buildPythonPackage
|
|
, pythonOlder
|
|
, filelock
|
|
, importlib-metadata
|
|
, packaging
|
|
, pyyaml
|
|
, requests
|
|
, ruamel-yaml
|
|
, tqdm
|
|
, typing-extensions
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "huggingface-hub";
|
|
version = "0.6.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "huggingface";
|
|
repo = "huggingface_hub";
|
|
rev = "refs/tags/v${version}";
|
|
sha256 = "sha256-jR4aqMAAQJ5a7pOe3RpCtLgdm5JVVSPsBQtube6FeqM=";
|
|
};
|
|
|
|
nativeBuildInputs = [ packaging ];
|
|
|
|
propagatedBuildInputs = [
|
|
filelock
|
|
pyyaml
|
|
requests
|
|
ruamel-yaml
|
|
tqdm
|
|
typing-extensions
|
|
] ++ lib.optionals (pythonOlder "3.8") [ importlib-metadata ];
|
|
|
|
# Tests require network access.
|
|
doCheck = false;
|
|
pythonImportsCheck = [ "huggingface_hub" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/huggingface/huggingface_hub";
|
|
description = "Download and publish models and other files on the huggingface.co hub";
|
|
changelog = "https://github.com/huggingface/huggingface_hub/releases/tag/v${version}";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|