Skip to content

Commit 214357a

Browse files
pypy3Packages.cython: fix
1 parent 7ecebd4 commit 214357a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

pkgs/development/python-modules/cython/default.nix

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
buildPythonPackage,
44
fetchFromGitHub,
55
gdb,
6+
isPyPy,
67
ncurses,
78
numpy,
89
pkg-config,
@@ -36,7 +37,9 @@ buildPythonPackage rec {
3637
ncurses
3738
];
3839

39-
env.LC_ALL = "en_US.UTF-8";
40+
env = lib.optionalAttrs (!isPyPy) {
41+
LC_ALL = "en_US.UTF-8";
42+
};
4043

4144
# https://github.com/cython/cython/issues/2785
4245
# Temporary solution

0 commit comments

Comments
 (0)