From 42b7d5b7775e249dd23d5d0832f092446aa6d39c Mon Sep 17 00:00:00 2001 From: Nicolas Graves Date: Fri, 4 Apr 2025 21:17:09 +0200 Subject: [PATCH] gnu: python-country-converter: Add missing native-input. * gnu/packages/iso-codes.scm (python-country-converter)[native-inputs]: Add python-wheel. Signed-off-by: Sharlatan Hellseher --- gnu/packages/iso-codes.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gnu/packages/iso-codes.scm b/gnu/packages/iso-codes.scm index fd04d13a9f..ad9b90a564 100644 --- a/gnu/packages/iso-codes.scm +++ b/gnu/packages/iso-codes.scm @@ -122,7 +122,8 @@ information.") (build-system pyproject-build-system) (native-inputs (list python-pytest - python-setuptools)) + python-setuptools + python-wheel)) (propagated-inputs (list python-pandas)) (home-page "https://github.com/IndEcol/country_converter")