From ef418c072d731ae690c2a1af1074533b4ee10eec Mon Sep 17 00:00:00 2001 From: natsukium Date: Mon, 11 Mar 2024 17:24:56 +0900 Subject: [PATCH] python311Packages.falcon: build with cython_3 --- pkgs/development/python-modules/falcon/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/falcon/default.nix b/pkgs/development/python-modules/falcon/default.nix index 49ba6a6d5d9a..edac2892bc98 100644 --- a/pkgs/development/python-modules/falcon/default.nix +++ b/pkgs/development/python-modules/falcon/default.nix @@ -6,7 +6,7 @@ , fetchFromGitHub # build -, cython +, cython_3 , setuptools # tests @@ -43,7 +43,7 @@ buildPythonPackage rec { nativeBuildInputs = [ setuptools ] ++ lib.optionals (!isPyPy) [ - cython + cython_3 ]; __darwinAllowLocalNetworking = true;