blob: 7376ba902023edcd03c6f870f93645ef8e0df489 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
# build-system
cargo,
pkg-config,
rustPlatform,
rustc,
# buildInputs
openssl,
stdenv,
libiconv,
}:
buildPythonPackage rec {
pname = "hf-transfer";
version = "0.1.9";
pyproject = true;
src = fetchFromGitHub {
owner = "huggingface";
repo = "hf_transfer";
tag = "v${version}";
hash = "sha256-mcU3YuJVfuwBvtLfqceV3glcJcpjSX7M3VjvbvLCxZg=";
};
cargoDeps = rustPlatform.fetchCargoVendor {
inherit pname version src;
hash = "sha256-O4aKqVSShFpt8mdZkY3WV55j9CIczRSRkIMC7dJoGv0=";
};
build-system = [
cargo
pkg-config
rustPlatform.cargoSetupHook
rustPlatform.maturinBuildHook
rustc
];
buildInputs = [
openssl
]
++ lib.optionals stdenv.hostPlatform.isDarwin [
libiconv
];
pythonImportsCheck = [ "hf_transfer" ];
env = {
OPENSSL_NO_VENDOR = true;
};
meta = {
description = "High speed download python library";
homepage = "https://github.com/huggingface/hf_transfer";
changelog = "https://github.com/huggingface/hf_transfer/releases/tag/v${version}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ GaetanLepage ];
};
}
|