about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorGaetan Lepage <gaetan@glepage.com>2024-05-21 22:34:42 +0200
committerGaetan Lepage <gaetan@glepage.com>2024-05-22 23:06:10 +0200
commitc236d8b8a5983565b7fd7513bbb3da04f852abc3 (patch)
treedbe78c5f716f7df9e9eced061bfbf8736da09f57 /pkgs
parentb1e83488115b8fcd21281fea214f6c41b81a4495 (diff)
python311Packages.huggingface-hub: 0.23.0 -> 0.23.1
Diff: https://github.com/huggingface/huggingface_hub/compare/refs/tags/v0.23.0...v0.23.1

Changelog: https://github.com/huggingface/huggingface_hub/releases/tag/v0.23.1
Diffstat (limited to 'pkgs')
-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 c8a198c57bbae..993316e030f63 100644
--- a/pkgs/development/python-modules/huggingface-hub/default.nix
+++ b/pkgs/development/python-modules/huggingface-hub/default.nix
@@ -15,7 +15,7 @@
 
 buildPythonPackage rec {
   pname = "huggingface-hub";
-  version = "0.23.0";
+  version = "0.23.1";
   pyproject = true;
 
   disabled = pythonOlder "3.8";
@@ -24,7 +24,7 @@ buildPythonPackage rec {
     owner = "huggingface";
     repo = "huggingface_hub";
     rev = "refs/tags/v${version}";
-    hash = "sha256-FfevPGec++3auA4Zxu84mhpD0RGatcPgDKi7LkmOVss=";
+    hash = "sha256-xMtCyYVstHLgX4++IlJ4ON/2vhMa6oafhMkdxk3+yGQ=";
   };
 
   build-system = [ setuptools ];
@@ -44,12 +44,12 @@ buildPythonPackage rec {
 
   pythonImportsCheck = [ "huggingface_hub" ];
 
-  meta = with lib; {
+  meta = {
     description = "Download and publish models and other files on the huggingface.co hub";
     mainProgram = "huggingface-cli";
     homepage = "https://github.com/huggingface/huggingface_hub";
     changelog = "https://github.com/huggingface/huggingface_hub/releases/tag/v${version}";
-    license = licenses.asl20;
-    maintainers = with maintainers; [ GaetanLepage ];
+    license = lib.licenses.asl20;
+    maintainers = with lib.maintainers; [ GaetanLepage ];
   };
 }