diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2025-04-04 21:17:09 +0200 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-04-16 11:46:29 +0200 |
commit | 42b7d5b7775e249dd23d5d0832f092446aa6d39c (patch) | |
tree | 8c49e505695eff3e213dcc9cad031b63e558575d | |
parent | 22c2ef5fcf0fadfb70d9bbdf68efea4c29cadbee (diff) | |
download | guix-42b7d5b7775e249dd23d5d0832f092446aa6d39c.tar.gz guix-42b7d5b7775e249dd23d5d0832f092446aa6d39c.zip |
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 <sharlatanus@gmail.com>
-rw-r--r-- | gnu/packages/iso-codes.scm | 3 |
1 files changed, 2 insertions, 1 deletions
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") |