2c76a4cb41
GitOrigin-RevId: c757e9bd77b16ca2e03c89bf8bc9ecb28e0c06ad
52 lines
1 KiB
Nix
52 lines
1 KiB
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, buildPythonPackage
|
|
, pythonOlder
|
|
, filelock
|
|
, fsspec
|
|
, packaging
|
|
, pyyaml
|
|
, requests
|
|
, tqdm
|
|
, typing-extensions
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "huggingface-hub";
|
|
version = "0.18.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "huggingface";
|
|
repo = "huggingface_hub";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-/KbD3TNSbQ9ueXYFLoXnIRIoi/y3l0w72GZ1+JC8ULk=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
filelock
|
|
fsspec
|
|
packaging
|
|
pyyaml
|
|
requests
|
|
tqdm
|
|
typing-extensions
|
|
];
|
|
|
|
# Tests require network access.
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [
|
|
"huggingface_hub"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Download and publish models and other files on the huggingface.co hub";
|
|
homepage = "https://github.com/huggingface/huggingface_hub";
|
|
changelog = "https://github.com/huggingface/huggingface_hub/releases/tag/v${version}";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ kira-bruneau ];
|
|
};
|
|
}
|