Unverified Commit 00c6d886 authored by Gaétan Lepage's avatar Gaétan Lepage Committed by GitHub
Browse files

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

parents a4cfb9ab 95ddc3df
Loading
Loading
Loading
Loading
+7 −4
Original line number Diff line number Diff line
@@ -40,14 +40,14 @@

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 ];
@@ -107,10 +107,13 @@ buildPythonPackage rec {

  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
    ];
  };
}