Commit abe503e2 authored by Gaetan Lepage's avatar Gaetan Lepage
Browse files
parent ad1e85cd
Loading
Loading
Loading
Loading
+2 −5
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  pythonOlder,
  fetchFromGitHub,

  # build-system
@@ -19,16 +18,14 @@

buildPythonPackage rec {
  pname = "huggingface-hub";
  version = "0.24.6";
  version = "0.24.7";
  pyproject = true;

  disabled = pythonOlder "3.8";

  src = fetchFromGitHub {
    owner = "huggingface";
    repo = "huggingface_hub";
    rev = "refs/tags/v${version}";
    hash = "sha256-1W+hfe2m5mXidbepVPMObnOZH6LCQG9dvFRbo9iUjKg=";
    hash = "sha256-7JW98PVJy3dKn3V+JmyxCZJplFUpqPckMbOJR45ZH7o=";
  };

  build-system = [ setuptools ];