~ruther/guix-local

f18f8b73835f0f24d245d29acb3f0e034170c502 — Ricardo Wurmus 11 years ago 6754032
gnu: python-scipy: install UTF-8 locale.

* gnu/packages/python.scm (python-scipy): Install en_US.UTF-8 locale in
  install-doc phase to avoid encoding error.
1 files changed, 5 insertions(+), 1 deletions(-)

M gnu/packages/python.scm
M gnu/packages/python.scm => gnu/packages/python.scm +5 -1
@@ 2357,7 2357,11 @@ toolkits.")
                  (html (string-append doc "/html"))
                  (pyver ,(string-append "PYVER=")))
             (with-directory-excursion "doc"
               ;; Without setting this variable we get an encoding error.
               ;; Install and set UTF-8 locale to avoid an encoding error.
               (setenv "LOCPATH" (getcwd))
               (system* "localedef" "--no-archive"
                        "--prefix" (getcwd) "-i" "en_US"
                        "-f" "UTF-8" "./en_US.UTF-8")
               (setenv "LANG" "en_US.UTF-8")
               ;; Fix generation of images for mathematical expressions.
               (substitute* (find-files "source" "conf\\.py")