From a0c33425f12ecdfc3c456ff2d0d801a161e59eca Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Mon, 28 Oct 2024 18:09:17 +0100 Subject: [PATCH] python313Packages.cython_0: disable --- pkgs/development/python-modules/cython/0.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/cython/0.nix b/pkgs/development/python-modules/cython/0.nix index a484892c0040..8362d6e322ca 100644 --- a/pkgs/development/python-modules/cython/0.nix +++ b/pkgs/development/python-modules/cython/0.nix @@ -7,6 +7,7 @@ setuptools, python, pkg-config, + pythonAtLeast, gdb, numpy, ncurses, @@ -35,6 +36,9 @@ buildPythonPackage rec { version = "0.29.36"; pyproject = true; + # error: too few arguments to function '_PyLong_AsByteArray' + disabled = pythonAtLeast "3.13"; + src = fetchPypi { pname = "Cython"; inherit version;