Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
40 lines
898 B
Nix
40 lines
898 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
isPyPy,
|
|
pythonAtLeast,
|
|
setuptools,
|
|
gmp,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "gmpy";
|
|
version = "1.17";
|
|
pyproject = true;
|
|
|
|
# Python 3.11 has finally made changes to its C API for which gmpy 1.17,
|
|
# published in 2013, would require patching. It seems unlikely that any
|
|
# patches will be forthcoming.
|
|
disabled = isPyPy || pythonAtLeast "3.11";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "aleaxit";
|
|
repo = "gmpy";
|
|
rev = "refs/tags/gmpy_${lib.replaceStrings [ "." ] [ "_" ] version}";
|
|
hash = "sha256-kMidOjhKJlDRu2qaiq9c+XcwD1tNAoPhRTvvGcOJe8I=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
buildInputs = [ gmp ];
|
|
|
|
pythonImportsCheck = [ "gmpy" ];
|
|
|
|
meta = {
|
|
description = "GMP or MPIR interface to Python 2.4+ and 3.x";
|
|
homepage = "https://github.com/aleaxit/gmpy/";
|
|
license = lib.licenses.lgpl21Plus;
|
|
};
|
|
}
|