mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-07 11:29:59 +01:00
gnu: python-geopy: Update to 2.4.1.
* gnu/packages/geo.scm (python-geopy): Update to 2.4.1. [build-system]: Swap to pyproject-build-system. [arguments] <test-flags>: Skip tests requiring Internet. [native-inputs]: Remove python-async-generator, python-coverage, python-flake8, python-isort, python-pytest-aiohttp, and python-readme-renderer; add python-docutils, python-pytest-asyncio, python-setuptools, and python-wheel. Change-Id: I051f6b9a98e6adb0e72dd3e57a73ee66c5df4b86
This commit is contained in:
parent
718c917ca8
commit
69bf202d36
1 changed files with 12 additions and 11 deletions
|
@ -14,7 +14,7 @@
|
|||
;;; Copyright © 2020, 2022 Marius Bakke <marius@gnu.org>
|
||||
;;; Copyright © 2020 Christopher Baines <mail@cbaines.net>
|
||||
;;; Copyright © 2020–2024 Felix Gruber <felgru@posteo.net>
|
||||
;;; Copyright © 2021, 2023, 2024 Sharlatan Hellseher <sharlatanus@gmail.com>
|
||||
;;; Copyright © 2021, 2023-2025 Sharlatan Hellseher <sharlatanus@gmail.com>
|
||||
;;; Copyright © 2021, 2023, 2024 Vinicius Monego <monego@posteo.net>
|
||||
;;; Copyright © 2021 Clément Lassieur <clement@lassieur.org>
|
||||
;;; Copyright © 2021, 2022 Nikolay Korotkiy <sikmir@disroot.org>
|
||||
|
@ -3455,26 +3455,27 @@ Maxmind-Geolite2-CSV, supports IPv4/IPv6 and is pure Python.")
|
|||
(define-public python-geopy
|
||||
(package
|
||||
(name "python-geopy")
|
||||
(version "2.0.0")
|
||||
(version "2.4.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "geopy" version))
|
||||
(sha256
|
||||
(base32
|
||||
"0fx0cv0kgbvynpmjgsvq2fpsyngd5idiscdn8pd5201f1ngii3mq"))))
|
||||
(build-system python-build-system)
|
||||
"1lfhnd04hbzmsdm5bqisvx2218v5cf6369xhbjz8jzfhga73sa2h"))))
|
||||
(build-system pyproject-build-system)
|
||||
(arguments
|
||||
(list
|
||||
#:test-flags #~(list "--skip-tests-requiring-internet")))
|
||||
(propagated-inputs
|
||||
(list python-geographiclib))
|
||||
(native-inputs
|
||||
(list python-async-generator
|
||||
python-coverage
|
||||
python-flake8
|
||||
python-isort
|
||||
(list python-docutils
|
||||
python-pytest
|
||||
python-pytest-aiohttp
|
||||
python-readme-renderer
|
||||
python-pytz))
|
||||
python-pytest-asyncio
|
||||
python-pytz
|
||||
python-setuptools
|
||||
python-wheel))
|
||||
(home-page "https://github.com/geopy/geopy")
|
||||
(synopsis "Geocoding library for Python")
|
||||
(description "@code{geopy} is a Python client for several popular geocoding
|
||||
|
|
Loading…
Add table
Reference in a new issue