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
|
{
lib,
stdenv,
buildPythonPackage,
fetchFromGitHub,
# build-system
hatch-vcs,
hatchling,
# dependencies
numpy,
packaging,
# tests
awkward,
dask-awkward,
notebook,
numba,
papermill,
pytestCheckHook,
sympy,
}:
buildPythonPackage rec {
pname = "vector";
version = "1.7.0";
pyproject = true;
src = fetchFromGitHub {
owner = "scikit-hep";
repo = "vector";
tag = "v${version}";
hash = "sha256-U1ttxt7Ba+NrcbslmkZT/d+ZdXrmk0teT5vGAcfLqF4=";
};
build-system = [
hatch-vcs
hatchling
];
dependencies = [
numpy
packaging
];
nativeCheckInputs = [
awkward
dask-awkward
notebook
numba
papermill
pytestCheckHook
sympy
];
pythonImportsCheck = [ "vector" ];
__darwinAllowLocalNetworking = true;
disabledTests = [
# AssertionErrors in sympy tests
"test_lorentz_object"
"test_lorentz_sympy"
"test_rhophi_eta_t"
"test_rhophi_eta_tau"
"test_xy_eta_t"
"test_xy_eta_tau"
# AssertionError: assert array([2.]) == array([-2.])
"test_issue_443"
]
++ lib.optionals (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64) [
# Fatal Python error: Segmentation fault
# numba/typed/typeddict.py", line 185 in __setitem__
"test_method_transform2D"
"test_method_transform3D"
"test_method_transform4D"
]
++ lib.optionals (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86_64) [
# AssertionError: assert 2.1073424255447017e-08 == 0.0
"test_issue_463"
];
meta = {
description = "Library for 2D, 3D, and Lorentz vectors, especially arrays of vectors, to solve common physics problems in a NumPy-like way";
homepage = "https://github.com/scikit-hep/vector";
changelog = "https://github.com/scikit-hep/vector/releases/tag/${src.tag}";
license = with lib.licenses; [ bsd3 ];
maintainers = with lib.maintainers; [ veprbl ];
};
}
|