blob: 5a6c426b2921be7a5579c20b54e9c9ec6f71ac11 (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
# build-system
setuptools,
# dependencies
numpy,
# tests
absl-py,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "ml-dtypes";
version = "0.5.4";
pyproject = true;
src = fetchFromGitHub {
owner = "jax-ml";
repo = "ml_dtypes";
tag = "v${version}";
hash = "sha256-vGCDLs7Te/3fBZmCQVp2Zm5NnP7K/KCkTod0oFVVKN4=";
# Since this upstream patch (https://github.com/jax-ml/ml_dtypes/commit/1bfd097e794413b0d465fa34f2eff0f3828ff521),
# the attempts to use the nixpkgs packaged eigen dependency have failed.
# Hence, we rely on the bundled eigen library.
fetchSubmodules = true;
};
build-system = [ setuptools ];
dependencies = [ numpy ];
nativeCheckInputs = [
absl-py
pytestCheckHook
];
preCheck = ''
# remove src module, so tests use the installed module instead
mv ./ml_dtypes/tests ./tests
rm -rf ./ml_dtypes
'';
pythonImportsCheck = [ "ml_dtypes" ];
meta = {
description = "Stand-alone implementation of several NumPy dtype extensions used in machine learning libraries";
homepage = "https://github.com/jax-ml/ml_dtypes";
changelog = "https://github.com/jax-ml/ml_dtypes/releases/tag/v${version}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [
GaetanLepage
samuela
];
};
}
|