lol

python3Packages.huggingface-hub: 0.0.8 -> 0.0.18

Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space>

authored by

Marc 'risson' Schmitt and committed by
Jonathan Ringer
86c5d1d4 6ee0c7dc

+9 -2
+9 -2
pkgs/development/python-modules/huggingface-hub/default.nix
··· 4 4 , pythonOlder 5 5 , filelock 6 6 , importlib-metadata 7 + , packaging 7 8 , requests 9 + , ruamel-yaml 8 10 , tqdm 11 + , typing-extensions 9 12 }: 10 13 11 14 buildPythonPackage rec { 12 15 pname = "huggingface-hub"; 13 - version = "0.0.6"; 16 + version = "0.0.18"; 14 17 15 18 src = fetchFromGitHub { 16 19 owner = "huggingface"; 17 20 repo = "huggingface_hub"; 18 21 rev = "v${version}"; 19 - hash = "sha256-0DSgWmodeRmvGq2v3n86BzRx5Xdb8fIQh+G/2O2d+yo="; 22 + sha256 = "sha256-SxA7rAdKuSrSYFIuxG81lblPJOL69Yx4rBccVrbQa/g="; 20 23 }; 24 + 25 + nativeBuildInputs = [ packaging ]; 21 26 22 27 propagatedBuildInputs = [ 23 28 filelock 24 29 requests 30 + ruamel-yaml 25 31 tqdm 32 + typing-extensions 26 33 ] ++ lib.optionals (pythonOlder "3.8") [ importlib-metadata ]; 27 34 28 35 # Tests require network access.