summary refs log tree commit diff
diff options
context:
space:
mode:
authorDaiderd Jordan <daiderd@gmail.com>2017-11-10 21:24:35 +0100
committerGitHub <noreply@github.com>2017-11-10 21:24:35 +0100
commit0e92951773200dbcfd45c04011524c417c55cdf2 (patch)
tree761a00ad071c65f4e11550b876e23910d15cd9db
parentd00e649d2f798c7e03e12ed026e061e5a5a4d61c (diff)
parent5e5ba33b5e866c4a6079c5ca6c46fdaed68b179b (diff)
downloadnixlib-0e92951773200dbcfd45c04011524c417c55cdf2.tar
nixlib-0e92951773200dbcfd45c04011524c417c55cdf2.tar.gz
nixlib-0e92951773200dbcfd45c04011524c417c55cdf2.tar.bz2
nixlib-0e92951773200dbcfd45c04011524c417c55cdf2.tar.lz
nixlib-0e92951773200dbcfd45c04011524c417c55cdf2.tar.xz
nixlib-0e92951773200dbcfd45c04011524c417c55cdf2.tar.zst
nixlib-0e92951773200dbcfd45c04011524c417c55cdf2.zip
Merge pull request #31487 from jbaum98/nbconvert
pythonPackages.nbconvert: fix failing tests on darwin
-rw-r--r--pkgs/development/python-modules/nbconvert/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/nbconvert/default.nix b/pkgs/development/python-modules/nbconvert/default.nix
index d04e5c5eccbd..c0b8b90bd089 100644
--- a/pkgs/development/python-modules/nbconvert/default.nix
+++ b/pkgs/development/python-modules/nbconvert/default.nix
@@ -39,7 +39,7 @@ buildPythonPackage rec {
 
   checkPhase = ''
     mkdir tmp
-    LC_ALL=en_US.utf8 HOME=`realpath tmp` py.test -v
+    LC_ALL=en_US.UTF-8 HOME=`realpath tmp` py.test -v
   '';
 
   meta = {