From bd67531b82a72155d02a8d756b0f4fbd6e04c0c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Fri, 20 Sep 2024 15:07:47 +0200 Subject: [PATCH] gnu: python-pyfaidx: Add dependency on UTF-8 locales for tests. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes a regression introduced in 92727f4af5d410b0a521d57d5ecef6b35779bdc2 whereby the “en_US.utf8” locale would no longer be available in the build environment. * gnu/packages/bioinformatics.scm (python-pyfaidx)[native-inputs]: Add ‘libc-utf8-locales-for-target’. Change-Id: I4f868edb82ef08bb56e5d7e3d2ea861bd23c03bf --- gnu/packages/bioinformatics.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 0206ebe1a30..ad7baad5902 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -18513,7 +18513,8 @@ bgzipped text file that contains a pair of genomic coordinates per line.") (("dynamic = \\[\"version\"\\]") (string-append "version = \"" #$version "\"")))))))) (native-inputs - (list python-fsspec + (list (libc-utf8-locales-for-target) ;tests need "en_US.utf8" + python-fsspec python-mock python-numpy python-pytest