diff options
author | Josselin Poiret <dev@jpoiret.xyz> | 2024-02-13 22:52:32 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:44:54 +0200 |
commit | 8d81af68faa045878b565fffcf8e65dc38be67d4 (patch) | |
tree | 16ce0838af47debb7381118dbf5dd3279c41c023 /gnu | |
parent | d359f8555ddc8966e240dbef89b62d9055de4ef4 (diff) | |
download | guix-8d81af68faa045878b565fffcf8e65dc38be67d4.tar.gz guix-8d81af68faa045878b565fffcf8e65dc38be67d4.zip |
gnu: python-natsort: Add en_US.UTF-8 locale for tests.
* gnu/packages/python-xyz.scm (python-natsort): Add en_US.UTF-8 locale for the
package's tests.
Change-Id: I5947b6550b9bc71d403685756ead4f1c77c99012
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/python-xyz.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index bd0e3132aa..e938b361e3 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -22877,7 +22877,10 @@ implementation of your Python package and its public API surface.") (when tests? (invoke "pytest" "-v"))))))) (native-inputs - (list python-hypothesis python-pytest-cov python-pytest-mock + (list glibc-utf8-locales ;; Tests want en_US.UTF-8 + python-hypothesis + python-pytest-cov + python-pytest-mock python-pytest)) (propagated-inputs ; TODO: Add python-fastnumbers. (list python-pyicu)) |