14 buildPythonPackage rec {
15 pname = "huggingface-hub";
17 format = "setuptools";
19 disabled = pythonOlder "3.8";
21 src = fetchFromGitHub {
22 owner = "huggingface";
23 repo = "huggingface_hub";
24 rev = "refs/tags/v${version}";
25 hash = "sha256-/KbD3TNSbQ9ueXYFLoXnIRIoi/y3l0w72GZ1+JC8ULk=";
28 propagatedBuildInputs = [
38 # Tests require network access.
41 pythonImportsCheck = [
46 description = "Download and publish models and other files on the huggingface.co hub";
47 homepage = "https://github.com/huggingface/huggingface_hub";
48 changelog = "https://github.com/huggingface/huggingface_hub/releases/tag/v${version}";
49 license = licenses.asl20;
50 maintainers = with maintainers; [ kira-bruneau ];