Commit 4acd903e authored by Kira Bruneau's avatar Kira Bruneau
Browse files

python3Packages.huggingface-hub: 0.15.1 -> 0.16.4

parent 3c15feef
Loading
Loading
Loading
Loading
+4 −7
Original line number Diff line number Diff line
@@ -4,7 +4,6 @@
, pythonOlder
, filelock
, fsspec
, importlib-metadata
, packaging
, pyyaml
, requests
@@ -14,16 +13,16 @@

buildPythonPackage rec {
  pname = "huggingface-hub";
  version = "0.15.1";
  version = "0.16.4";
  format = "setuptools";

  disabled = pythonOlder "3.7";
  disabled = pythonOlder "3.8";

  src = fetchFromGitHub {
    owner = "huggingface";
    repo = "huggingface_hub";
    rev = "refs/tags/v${version}";
    hash = "sha256-q30/oNP1NjyxiJuSfxyjFgciydImMUgPdGJ/tqVtwZk=";
    hash = "sha256-fWvEvYiaLiVGmDdfibIHJAsu7nUX+eaE0QGolS3LHO8=";
  };

  propagatedBuildInputs = [
@@ -34,8 +33,6 @@ buildPythonPackage rec {
    requests
    tqdm
    typing-extensions
  ] ++ lib.optionals (pythonOlder "3.8") [
    importlib-metadata
  ];

  # Tests require network access.