Merge pull request #308528 from GaetanLepage/huggingface-hub

python311Packages.huggingface-hub: 0.22.2 -> 0.23.0

authored by Yt and committed by GitHub 32476a46 a77b0be3

+5 -5
+5 -5
pkgs/development/python-modules/huggingface-hub/default.nix
··· 14 14 15 15 buildPythonPackage rec { 16 16 pname = "huggingface-hub"; 17 - version = "0.22.2"; 17 + version = "0.23.0"; 18 18 pyproject = true; 19 19 20 20 disabled = pythonOlder "3.8"; ··· 23 23 owner = "huggingface"; 24 24 repo = "huggingface_hub"; 25 25 rev = "refs/tags/v${version}"; 26 - hash = "sha256-Y/oUF+d6Oo45x9cufZxjaJCQpoY0acPhetbyAt8M3pQ="; 26 + hash = "sha256-FfevPGec++3auA4Zxu84mhpD0RGatcPgDKi7LkmOVss="; 27 27 }; 28 28 29 - nativeBuildInputs = [ 29 + build-system = [ 30 30 setuptools 31 31 ]; 32 32 33 - propagatedBuildInputs = [ 33 + dependencies = [ 34 34 filelock 35 35 fsspec 36 36 packaging ··· 53 53 homepage = "https://github.com/huggingface/huggingface_hub"; 54 54 changelog = "https://github.com/huggingface/huggingface_hub/releases/tag/v${version}"; 55 55 license = licenses.asl20; 56 - maintainers = with maintainers; [ ]; 56 + maintainers = with maintainers; [ GaetanLepage ]; 57 57 }; 58 58 }