python312Packages.array-record: disable

We package a wheel, and there is none for 3.12.
This commit is contained in:
Martin Weinelt 2023-12-03 17:26:15 +01:00
parent be581257de
commit 3549cdfb56
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, pythonOlder
, pythonAtLeast
, python
, fetchPypi
, absl-py
@ -16,7 +17,7 @@ buildPythonPackage rec {
format = "wheel";
# As of 2023-10-31, PyPI includes wheels for Python 3.9, 3.10, and 3.11.
disabled = pythonOlder "3.9";
disabled = pythonOlder "3.9" || pythonAtLeast "3.12";
src = let
pyShortVersion = "cp${builtins.replaceStrings ["."] [""] python.pythonVersion}";