python312Packages.gmpy2: 2.2.0a2 -> 2.2.1

This commit is contained in:
TomaSajt
2025-03-30 18:09:29 +02:00
parent 33fbbdc82f
commit fcc78f1c76
@@ -4,7 +4,6 @@
buildPythonPackage,
fetchFromGitHub,
isPyPy,
pythonOlder,
setuptools,
gmp,
mpfr,
@@ -19,16 +18,16 @@
buildPythonPackage rec {
pname = "gmpy2";
version = "2.2.0a2";
version = "2.2.1";
pyproject = true;
disabled = isPyPy || pythonOlder "3.7";
disabled = isPyPy;
src = fetchFromGitHub {
owner = "aleaxit";
repo = "gmpy";
tag = "gmpy2-${version}";
hash = "sha256-luLEDEY1cezhzZo4fXmM/MUg2YyAaz7n0HwSpbNayP8=";
tag = "v${version}";
hash = "sha256-wrMN3kqLnjItoybKYeo4Pp2M0uma7Kg0JEQM8lr6OI0=";
};
build-system = [ setuptools ];