diff options
author | Lars-Dominik Braun <lars@6xq.net> | 2024-02-22 20:47:54 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-12-13 20:18:25 +0000 |
commit | 6d97c15911a51d29f91e3656f9c4ab38e08d7f21 (patch) | |
tree | a42bcc8f38f2532ca0218d92323c993729912961 /gnu/packages/geo.scm | |
parent | 1ef178c644178304b24bd29c7563ab0529c15f8f (diff) |
gnu: Add python-setuptools/python-wheel where necessary.
Changes to pyproject-build-system require explicit dependency on
setuptools/wheel.
Change-Id: Icd7699fc1dc56e974ae7568f2ae916dbf876bea5
Diffstat (limited to 'gnu/packages/geo.scm')
-rw-r--r-- | gnu/packages/geo.scm | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm index 50decdd14a..c525a79081 100644 --- a/gnu/packages/geo.scm +++ b/gnu/packages/geo.scm @@ -1090,6 +1090,8 @@ for the @code{OpenStreetMap} Overpass API.") diffutils libxml2 python-cram + python-setuptools + python-wheel which)) (propagated-inputs (list python-lxml @@ -1445,7 +1447,10 @@ utilities for data translation and processing.") ;; This test requires internet access. '(list "--deselect" "test_shapefile.py::test_reader_url"))) (native-inputs - (list python-pytest python-pytest-runner)) + (list python-pytest + python-pytest-runner + python-setuptools + python-wheel)) (home-page "https://github.com/GeospatialPython/pyshp") (synopsis "Read/write support for ESRI Shapefile format") (description @@ -1551,7 +1556,9 @@ surface (i.e., gridding) with a hint of machine learning.") python-pytest python-pytest-cov python-pytest-mpl - python-pytest-xdist)) + python-pytest-xdist + python-setuptools + python-wheel)) (home-page "https://scitools.org.uk/cartopy/docs/latest/") (synopsis "Cartographic library for visualisation") (description @@ -3367,6 +3374,7 @@ path loss.") ;; The tests are speed tests or development tests to compare results with ;; a different library. (arguments (list #:tests? #false)) + (native-inputs (list python-setuptools python-wheel)) (home-page "https://github.com/rabuchaim/geoip2fast") (synopsis "Fast GeoIP2 country/city/asn lookup library") @@ -3423,7 +3431,11 @@ using third-party geocoders and other data sources.") (base32 "0inxyj5n4jzgg5xiadqx9sk83gdx5ff989l9s04smdzbd3b8c0c8")))) (build-system pyproject-build-system) - (native-inputs (list python-pytest python-numpy)) + (native-inputs + (list python-pytest + python-numpy + python-setuptools + python-wheel)) (home-page "https://github.com/mapado/haversine") (synopsis "Calculate the distance between 2 points on Earth") (description "This package provides functions to calculate the |