diff --git a/pkgs/development/python-modules/huggingface-hub/default.nix b/pkgs/development/python-modules/huggingface-hub/default.nix index 57948a00daf2..9edd32ac8c5d 100644 --- a/pkgs/development/python-modules/huggingface-hub/default.nix +++ b/pkgs/development/python-modules/huggingface-hub/default.nix @@ -7,7 +7,6 @@ setuptools, # dependencies - click, filelock, fsspec, hf-xet, @@ -15,6 +14,7 @@ packaging, pyyaml, tqdm, + typer, typing-extensions, # optional-dependencies @@ -41,20 +41,19 @@ buildPythonPackage (finalAttrs: { pname = "huggingface-hub"; - version = "1.23.0"; + version = "1.16.0"; pyproject = true; src = fetchFromGitHub { owner = "huggingface"; repo = "huggingface_hub"; tag = "v${finalAttrs.version}"; - hash = "sha256-Xl9girALcJw7aeLjFd4d/xITS8bTz9xlmziEQwrOdQ0="; + hash = "sha256-GuTsoz7ow3A/PJyU3L/xLp56r3RVx5O1YH3nr3T4u7U="; }; build-system = [ setuptools ]; dependencies = [ - click filelock fsspec hf-xet @@ -62,6 +61,7 @@ buildPythonPackage (finalAttrs: { packaging pyyaml tqdm + typer typing-extensions ];