We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ecebd4 commit 214357aCopy full SHA for 214357a
pkgs/development/python-modules/cython/default.nix
@@ -3,6 +3,7 @@
3
buildPythonPackage,
4
fetchFromGitHub,
5
gdb,
6
+ isPyPy,
7
ncurses,
8
numpy,
9
pkg-config,
@@ -36,7 +37,9 @@ buildPythonPackage rec {
36
37
ncurses
38
];
39
- env.LC_ALL = "en_US.UTF-8";
40
+ env = lib.optionalAttrs (!isPyPy) {
41
+ LC_ALL = "en_US.UTF-8";
42
+ };
43
44
# https://github.com/cython/cython/issues/2785
45
# Temporary solution
0 commit comments