2021-03-19 17:17:44 +00:00
|
|
|
{ lib
|
|
|
|
, fetchFromGitHub
|
|
|
|
, buildPythonPackage
|
|
|
|
, pythonOlder
|
|
|
|
, filelock
|
2023-05-24 13:37:59 +00:00
|
|
|
, fsspec
|
2021-03-19 17:17:44 +00:00
|
|
|
, importlib-metadata
|
2021-12-06 16:07:01 +00:00
|
|
|
, packaging
|
2021-12-26 17:43:05 +00:00
|
|
|
, pyyaml
|
2021-03-19 17:17:44 +00:00
|
|
|
, requests
|
|
|
|
, tqdm
|
2021-12-06 16:07:01 +00:00
|
|
|
, typing-extensions
|
2021-03-19 17:17:44 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "huggingface-hub";
|
2023-07-15 17:15:38 +00:00
|
|
|
version = "0.15.1";
|
2022-06-16 17:23:12 +00:00
|
|
|
format = "setuptools";
|
|
|
|
|
|
|
|
disabled = pythonOlder "3.7";
|
2021-03-19 17:17:44 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "huggingface";
|
|
|
|
repo = "huggingface_hub";
|
2022-05-18 14:49:53 +00:00
|
|
|
rev = "refs/tags/v${version}";
|
2023-07-15 17:15:38 +00:00
|
|
|
hash = "sha256-q30/oNP1NjyxiJuSfxyjFgciydImMUgPdGJ/tqVtwZk=";
|
2021-03-19 17:17:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
filelock
|
2023-05-24 13:37:59 +00:00
|
|
|
fsspec
|
2022-06-16 17:23:12 +00:00
|
|
|
packaging
|
2021-12-26 17:43:05 +00:00
|
|
|
pyyaml
|
2021-03-19 17:17:44 +00:00
|
|
|
requests
|
|
|
|
tqdm
|
2021-12-06 16:07:01 +00:00
|
|
|
typing-extensions
|
2022-06-16 17:23:12 +00:00
|
|
|
] ++ lib.optionals (pythonOlder "3.8") [
|
|
|
|
importlib-metadata
|
|
|
|
];
|
2021-03-19 17:17:44 +00:00
|
|
|
|
|
|
|
# Tests require network access.
|
|
|
|
doCheck = false;
|
2022-06-16 17:23:12 +00:00
|
|
|
|
|
|
|
pythonImportsCheck = [
|
|
|
|
"huggingface_hub"
|
|
|
|
];
|
2021-03-19 17:17:44 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Download and publish models and other files on the huggingface.co hub";
|
2022-06-16 17:23:12 +00:00
|
|
|
homepage = "https://github.com/huggingface/huggingface_hub";
|
2022-05-18 14:49:53 +00:00
|
|
|
changelog = "https://github.com/huggingface/huggingface_hub/releases/tag/v${version}";
|
2021-03-19 17:17:44 +00:00
|
|
|
license = licenses.asl20;
|
2023-05-24 13:37:59 +00:00
|
|
|
maintainers = with maintainers; [ kira-bruneau ];
|
2021-03-19 17:17:44 +00:00
|
|
|
};
|
|
|
|
}
|