python3Packages.huggingface_hub: init at 0.0.6
This is a package to download and publish data on the huggingface.co hub.
This commit is contained in:
parent
6aa26c8623
commit
7ceb2fb023
39
pkgs/development/python-modules/huggingface-hub/default.nix
Normal file
39
pkgs/development/python-modules/huggingface-hub/default.nix
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
{ lib
|
||||||
|
, fetchFromGitHub
|
||||||
|
, buildPythonPackage
|
||||||
|
, pythonOlder
|
||||||
|
, filelock
|
||||||
|
, importlib-metadata
|
||||||
|
, requests
|
||||||
|
, tqdm
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "huggingface-hub";
|
||||||
|
version = "0.0.6";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "huggingface";
|
||||||
|
repo = "huggingface_hub";
|
||||||
|
rev = "v${version}";
|
||||||
|
hash = "sha256-0DSgWmodeRmvGq2v3n86BzRx5Xdb8fIQh+G/2O2d+yo=";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
filelock
|
||||||
|
requests
|
||||||
|
tqdm
|
||||||
|
] ++ lib.optionals (pythonOlder "3.8") [ importlib-metadata ];
|
||||||
|
|
||||||
|
# Tests require network access.
|
||||||
|
doCheck = false;
|
||||||
|
pythonImportsCheck = [ "huggingface_hub" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = "https://github.com/huggingface/huggingface_hub";
|
||||||
|
description = "Download and publish models and other files on the huggingface.co hub";
|
||||||
|
changelog = "https://github.com/huggingface/huggingface_hub/releases/tag/${version}";
|
||||||
|
license = licenses.asl20;
|
||||||
|
maintainers = with maintainers; [ danieldk ];
|
||||||
|
};
|
||||||
|
}
|
@ -3072,6 +3072,8 @@ in {
|
|||||||
|
|
||||||
hug = callPackage ../development/python-modules/hug { };
|
hug = callPackage ../development/python-modules/hug { };
|
||||||
|
|
||||||
|
huggingface-hub = callPackage ../development/python-modules/huggingface-hub { };
|
||||||
|
|
||||||
humanfriendly = callPackage ../development/python-modules/humanfriendly { };
|
humanfriendly = callPackage ../development/python-modules/humanfriendly { };
|
||||||
|
|
||||||
humanize = callPackage ../development/python-modules/humanize { };
|
humanize = callPackage ../development/python-modules/humanize { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user