python311Packages.gmpy: disable

This commit is contained in:
Ryan Hendrickson 2023-05-18 23:22:55 -04:00
parent 93a8a8760b
commit 985286d4a7

View file

@ -1,4 +1,4 @@
{ buildPythonPackage, fetchurl, isPyPy, gmp } : { buildPythonPackage, fetchurl, isPyPy, gmp, pythonAtLeast } :
let let
pname = "gmpy"; pname = "gmpy";
@ -8,7 +8,10 @@ in
buildPythonPackage { buildPythonPackage {
inherit pname version; inherit pname version;
disabled = isPyPy; # 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 = fetchurl { src = fetchurl {
url = "mirror://pypi/g/gmpy/${pname}-${version}.zip"; url = "mirror://pypi/g/gmpy/${pname}-${version}.zip";