python3Packages.huggingface-hub: 0.34.4 -> 0.35.0 (#445500)

Changed files
+7 -4
pkgs
development
python-modules
huggingface-hub
+7 -4
pkgs/development/python-modules/huggingface-hub/default.nix
···
buildPythonPackage rec {
pname = "huggingface-hub";
-
version = "0.34.4";
+
version = "0.35.0";
pyproject = true;
src = fetchFromGitHub {
owner = "huggingface";
repo = "huggingface_hub";
tag = "v${version}";
-
hash = "sha256-2R4G/2VBj/URVdVn/1dPBDdFCdXZymPc2zdbzddyYwU=";
+
hash = "sha256-b7zuqY1d2wBjqyQ3nxhXg33limR1Nq3dGS2YoY5xcsQ=";
};
build-system = [ setuptools ];
···
meta = {
description = "Download and publish models and other files on the huggingface.co hub";
-
mainProgram = "huggingface-cli";
+
mainProgram = "hf";
homepage = "https://github.com/huggingface/huggingface_hub";
changelog = "https://github.com/huggingface/huggingface_hub/releases/tag/v${version}";
license = lib.licenses.asl20;
-
maintainers = with lib.maintainers; [ GaetanLepage ];
+
maintainers = with lib.maintainers; [
+
GaetanLepage
+
osbm
+
];
};
}