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
|
{
lib,
stdenv,
buildPythonPackage,
fetchFromGitHub,
fetchpatch2,
isPyPy,
setuptools,
gmp,
mpfr,
libmpc,
pytestCheckHook,
hypothesis,
cython,
mpmath,
# Reverse dependency
sage,
}:
buildPythonPackage (finalAttrs: {
pname = "gmpy2";
version = "2.2.1";
pyproject = true;
disabled = isPyPy;
src = fetchFromGitHub {
owner = "aleaxit";
repo = "gmpy";
tag = "v${finalAttrs.version}";
hash = "sha256-wrMN3kqLnjItoybKYeo4Pp2M0uma7Kg0JEQM8lr6OI0=";
};
patches = [
(fetchpatch2 {
name = "fix-to_bytes-tests.patch";
url = "https://github.com/aleaxit/gmpy/commit/1903841667e7a6842bdead90bd7798b99de5b7be.patch?full_index=1";
hash = "sha256-rlssUIkQ1RCRSu5eCXKJ2lNa/oIoLzf9sxJuNfDrVmk=";
})
];
build-system = [ setuptools ];
buildInputs = [
gmp
mpfr
libmpc
];
# make relative imports in tests work properly
preCheck = ''
rm gmpy2 -r
'';
nativeCheckInputs = [
pytestCheckHook
hypothesis
cython
mpmath
];
pythonImportsCheck = [ "gmpy2" ];
passthru.tests = {
inherit sage;
};
meta = {
changelog = "https://github.com/aleaxit/gmpy/blob/${finalAttrs.src.rev}/docs/history.rst";
description = "Interface to GMP, MPFR, and MPC for Python 3.7+";
homepage = "https://github.com/aleaxit/gmpy/";
license = lib.licenses.lgpl3Plus;
maintainers = with lib.maintainers; [ tomasajt ];
};
})
|