blob: a0f8d285e5efbc6cdc7b113f8e9493bda0fb5493 (
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
64
65
66
67
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
stdenv,
cython,
setuptools,
attrs,
numpy,
protobuf,
pyparsing,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "typedunits";
version = "0.0.1";
pyproject = true;
src = fetchFromGitHub {
owner = "quantumlib";
repo = "TypedUnits";
tag = "v${version}";
hash = "sha256-g/kUPEtdyNvcWJOqcTCF27pW22WTg0EiHoEXgSs2xMs=";
};
build-system = [
cython
setuptools
];
dependencies = [
attrs
cython
numpy
protobuf
pyparsing
];
nativeCheckInputs = [
pytestCheckHook
];
disabledTests = lib.optionals stdenv.hostPlatform.isAarch [
# Rounding differences
"test_float_to_twelths_frac"
];
disabledTestPaths = [
# Flaky due to host timing differences under load
"test_perf/test_array_with_dimension_performance.py"
"test_perf/test_value_array_performance.py"
"test_perf/test_value_performance.py"
"test_perf/test_value_with_dimension_performance.py"
];
pythonImportsCheck = [
"tunits"
];
meta = {
description = "Units and dimensions library with support for static dimensionality checking and protobuffer serialization";
homepage = "https://github.com/quantumlib/TypedUnits";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ sarahec ];
};
}
|