summary refs log tree commit diff
diff options
context:
space:
mode:
authorKira Bruneau <kira.bruneau@pm.me>2023-05-01 14:09:31 -0400
committerKira Bruneau <kira.bruneau@pm.me>2023-05-02 15:57:52 -0400
commit0090afd16b40f957afc346d29529198d6bd06b06 (patch)
treeef8d2a125c5ded89efdf4532b54d2bc4472fabcc
parentf2e9a130461950270f87630b11132323706b4d91 (diff)
downloadnixpkgs-0090afd16b40f957afc346d29529198d6bd06b06.tar
nixpkgs-0090afd16b40f957afc346d29529198d6bd06b06.tar.gz
nixpkgs-0090afd16b40f957afc346d29529198d6bd06b06.tar.bz2
nixpkgs-0090afd16b40f957afc346d29529198d6bd06b06.tar.lz
nixpkgs-0090afd16b40f957afc346d29529198d6bd06b06.tar.xz
nixpkgs-0090afd16b40f957afc346d29529198d6bd06b06.tar.zst
nixpkgs-0090afd16b40f957afc346d29529198d6bd06b06.zip
python310Packages.huggingface-hub: 0.12.1 -> 0.14.1
-rw-r--r--pkgs/development/python-modules/huggingface-hub/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/python-modules/huggingface-hub/default.nix b/pkgs/development/python-modules/huggingface-hub/default.nix
index 790a14ba014..f637cbeba32 100644
--- a/pkgs/development/python-modules/huggingface-hub/default.nix
+++ b/pkgs/development/python-modules/huggingface-hub/default.nix
@@ -3,18 +3,18 @@
 , buildPythonPackage
 , pythonOlder
 , filelock
+, fsspec
 , importlib-metadata
 , packaging
 , pyyaml
 , requests
-, ruamel-yaml
 , tqdm
 , typing-extensions
 }:
 
 buildPythonPackage rec {
   pname = "huggingface-hub";
-  version = "0.12.1";
+  version = "0.14.1";
   format = "setuptools";
 
   disabled = pythonOlder "3.7";
@@ -23,15 +23,15 @@ buildPythonPackage rec {
     owner = "huggingface";
     repo = "huggingface_hub";
     rev = "refs/tags/v${version}";
-    hash = "sha256-uw64JnXx790S4snLjANU0aLI3r7AMPec+IQentTZOdU=";
+    hash = "sha256-+BtXi+O+Ef4p4b+8FJCrZFsxX22ZYOPXylexFtsldnA=";
   };
 
   propagatedBuildInputs = [
     filelock
+    fsspec
     packaging
     pyyaml
     requests
-    ruamel-yaml
     tqdm
     typing-extensions
   ] ++ lib.optionals (pythonOlder "3.8") [
@@ -50,6 +50,6 @@ buildPythonPackage rec {
     homepage = "https://github.com/huggingface/huggingface_hub";
     changelog = "https://github.com/huggingface/huggingface_hub/releases/tag/v${version}";
     license = licenses.asl20;
-    maintainers = with maintainers; [ ];
+    maintainers = with maintainers; [ kira-bruneau ];
   };
 }