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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
{
lib,
stdenv,
buildPythonPackage,
fetchFromGitHub,
rustPlatform,
# optional-dependencies
numpy,
torch,
tensorflow,
flax,
jax,
mlx,
paddlepaddle,
h5py,
huggingface-hub,
setuptools-rust,
pytest,
pytest-benchmark,
hypothesis,
# tests
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "safetensors";
version = "0.5.2";
pyproject = true;
src = fetchFromGitHub {
owner = "huggingface";
repo = "safetensors";
tag = "v${version}";
hash = "sha256-dtHHLiTgrg/a/SQ/Z1w0BsuFDClgrMsGiSTCpbJasUs=";
};
sourceRoot = "${src.name}/bindings/python";
cargoDeps = rustPlatform.fetchCargoVendor {
inherit pname src sourceRoot;
hash = "sha256-hjV2cfS/0WFyAnATt+A8X8sQLzQViDzkNI7zN0ltgpU=";
};
nativeBuildInputs = [
rustPlatform.cargoSetupHook
rustPlatform.maturinBuildHook
];
optional-dependencies = lib.fix (self: {
numpy = [ numpy ];
torch = self.numpy ++ [
torch
];
tensorflow = self.numpy ++ [
tensorflow
];
pinned-tf = self.numpy ++ [
tensorflow
];
jax = self.numpy ++ [
flax
jax
];
mlx = [
mlx
];
paddlepaddle = self.numpy ++ [
paddlepaddle
];
testing = self.numpy ++ [
h5py
huggingface-hub
setuptools-rust
pytest
pytest-benchmark
hypothesis
];
all = self.torch ++ self.numpy ++ self.pinned-tf ++ self.jax ++ self.paddlepaddle ++ self.testing;
dev = self.all;
});
nativeCheckInputs = [
h5py
numpy
pytestCheckHook
torch
];
pytestFlagsArray = [ "tests" ];
# don't require PaddlePaddle (not in Nixpkgs), Flax, or Tensorflow (onerous) to run tests:
disabledTestPaths =
[
"tests/test_flax_comparison.py"
"tests/test_paddle_comparison.py"
"tests/test_tf_comparison.py"
]
++ lib.optionals stdenv.hostPlatform.isDarwin [
# don't require mlx (not in Nixpkgs) to run tests
"tests/test_mlx_comparison.py"
];
pythonImportsCheck = [ "safetensors" ];
meta = {
homepage = "https://github.com/huggingface/safetensors";
description = "Fast (zero-copy) and safe (unlike pickle) format for storing tensors";
changelog = "https://github.com/huggingface/safetensors/releases/tag/v${version}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ bcdarwin ];
};
}
|