about summary refs log tree commit diff
path: root/pkgs/development/python-modules/urwidtrees
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2019-12-20 08:29:55 -0800
committerFrederik Rietdijk <fridh@fridh.nl>2019-12-30 16:46:49 +0100
commitc767c90fa9d4b02651cace48608f8592b94a82f2 (patch)
tree1b4fa94cec8eb87f0e72352060b9cf2498fa72d2 /pkgs/development/python-modules/urwidtrees
parentd7bd4e4506f9ff1dadcca714fa57ab22543bbc1e (diff)
pythonPackages.urwidtrees: enable glibclocales for tests
Diffstat (limited to 'pkgs/development/python-modules/urwidtrees')
-rw-r--r--pkgs/development/python-modules/urwidtrees/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/urwidtrees/default.nix b/pkgs/development/python-modules/urwidtrees/default.nix
index b69bb62a875a2..468420f0e5ceb 100644
--- a/pkgs/development/python-modules/urwidtrees/default.nix
+++ b/pkgs/development/python-modules/urwidtrees/default.nix
@@ -1,6 +1,7 @@
 { stdenv
 , buildPythonPackage
 , fetchFromGitHub
+, glibcLocales
 , urwid
 }:
 
@@ -17,6 +18,9 @@ buildPythonPackage rec {
 
   propagatedBuildInputs = [ urwid ];
 
+  checkInputs = [ glibcLocales ];
+  LC_ALL="en_US.UTF-8";
+
   meta = with stdenv.lib; {
     description = "Tree widgets for urwid";
     homepage = https://github.com/pazz/urwidtrees;