depot/third_party/nixpkgs/pkgs/development/python-modules/huggingface-hub/default.nix
Default email c7cb07f092 Project import generated by Copybara.
GitOrigin-RevId: 1536926ef5621b09bba54035ae2bb6d806d72ac8
2024-02-29 21:09:43 +01:00

57 lines
1.1 KiB
Nix

{ lib
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
, setuptools
, filelock
, fsspec
, packaging
, pyyaml
, requests
, tqdm
, typing-extensions
}:
buildPythonPackage rec {
pname = "huggingface-hub";
version = "0.21.2";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "huggingface";
repo = "huggingface_hub";
rev = "refs/tags/v${version}";
hash = "sha256-0Nr6qs9rzuBQo8SGuQ2Ai2Q+E+Gs4DT/AMrYf7dYM/E=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
filelock
fsspec
packaging
pyyaml
requests
tqdm
typing-extensions
];
# Tests require network access.
doCheck = false;
pythonImportsCheck = [
"huggingface_hub"
];
meta = with lib; {
description = "Download and publish models and other files on the huggingface.co hub";
homepage = "https://github.com/huggingface/huggingface_hub";
changelog = "https://github.com/huggingface/huggingface_hub/releases/tag/v${version}";
license = licenses.asl20;
maintainers = with maintainers; [ kira-bruneau ];
};
}