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
|
{
lib,
buildPythonPackage,
cython,
fetchFromGitHub,
fetchpatch,
gmpy2,
hypothesis,
mpmath,
numpy,
pexpect,
pytest-cov-stub,
pytest-timeout,
pytest-xdist,
pytestCheckHook,
scipy,
setuptools-scm,
}:
buildPythonPackage rec {
pname = "diofant";
version = "0.15.0";
pyproject = true;
src = fetchFromGitHub {
owner = "diofant";
repo = "diofant";
tag = "v${version}";
hash = "sha256-uQvAYSURDhuAKcX0WVMk4y2ZXiiq0lPZct/7A5n5t34=";
};
patches = [
(fetchpatch {
name = "remove-pip-from-build-dependencies.patch";
url = "https://github.com/diofant/diofant/commit/117e441808faa7c785ccb81bf211772d60ebdec3.patch";
hash = "sha256-MYk1Ku4F3hAv7+jJQLWhXd8qyKRX+QYuBzPfYWT0VbU=";
})
];
build-system = [ setuptools-scm ];
dependencies = [ mpmath ];
optional-dependencies = {
exports = [
cython
numpy
scipy
];
gmpy = [ gmpy2 ];
};
doCheck = false; # some tests get stuck easily
nativeCheckInputs = [
hypothesis
pexpect
pytest-cov-stub
pytest-xdist
pytestCheckHook
];
pytestFlags = [
"-Wignore::DeprecationWarning"
];
disabledTestMarks = [
"slow"
];
disabledTests = [
# AssertionError: assert '9.9012134805...5147838841057' == '2.7182818284...2178525166427'
"test_evalf_fast_series"
# AssertionError: assert Float('0.0051000000000000004', dps=15) == Float('0.010050166663333571', dps=15)
"test_evalf_sum"
];
pythonImportsCheck = [ "diofant" ];
meta = {
changelog = "https://diofant.readthedocs.io/en/latest/release/notes-${src.tag}.html";
description = "Python CAS library";
homepage = "https://github.com/diofant/diofant";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ suhr ];
};
}
|