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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
scikit-build-core,
setuptools,
setuptools-scm,
cmake,
ninja,
matchpy,
numpy,
astunparse,
typing-extensions,
nix-update-script,
pytestCheckHook,
pytest-cov-stub,
}:
buildPythonPackage rec {
pname = "uarray";
version = "0.9.3";
pyproject = true;
src = fetchFromGitHub {
owner = "Quansight-Labs";
repo = "uarray";
tag = version;
hash = "sha256-Nog7jvRG/EFf3n3W2DWC7UML5NyrlaaS0ECis5rtCSk=";
};
build-system = [
scikit-build-core
setuptools
setuptools-scm
cmake
ninja
];
dontUseCmakeConfigure = true;
dependencies = [
astunparse
matchpy
numpy
typing-extensions
];
nativeCheckInputs = [
pytestCheckHook
pytest-cov-stub
];
# Tests must be run from outside the source directory
preCheck = ''
cd $TMP
'';
pytestFlags = [
"--pyargs"
"uarray"
];
pythonImportsCheck = [ "uarray" ];
passthru.updateScript = nix-update-script { };
meta = {
description = "Universal array library";
homepage = "https://github.com/Quansight-Labs/uarray";
changelog = "https://github.com/Quansight-Labs/uarray/releases/tag/${src.tag}";
license = lib.licenses.bsd0;
maintainers = [ lib.maintainers.pbsds ];
};
}
|