From d455e316131cbbded8c45f12caaebcecb526df0d Mon Sep 17 00:00:00 2001 From: Stefan Frijters Date: Sat, 28 Feb 2026 13:51:23 +0100 Subject: [PATCH] python3Packages.cython: move LC_ALL into env for structuredAttrs --- pkgs/development/python-modules/cython/0.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/cython/0.nix b/pkgs/development/python-modules/cython/0.nix index a54ebfa8b156..53d0847d1d90 100644 --- a/pkgs/development/python-modules/cython/0.nix +++ b/pkgs/development/python-modules/cython/0.nix @@ -58,7 +58,7 @@ buildPythonPackage rec { ncurses ]; - LC_ALL = "en_US.UTF-8"; + env.LC_ALL = "en_US.UTF-8"; patches = [ # backport Cython 3.0 trashcan support (https://github.com/cython/cython/pull/2842) to 0.X series.