gnu: python-geoip2: Update to 4.8.0.
* gnu/packages/geo.scm (python-geoip2): Update to 4.8.0. [build-system]: Change to pyproject-build-system. [inputs]: Add python-aiohttp. Change-Id: Ie5f4a6f99a8cb1bef562c6d2401391f6467a715d Signed-off-by: jgart <jgart@dismail.de>master
parent
adf841fe3a
commit
d6211a9a71
|
@ -2398,19 +2398,21 @@ MaxMind DB files.")
|
||||||
(define-public python-geoip2
|
(define-public python-geoip2
|
||||||
(package
|
(package
|
||||||
(name "python-geoip2")
|
(name "python-geoip2")
|
||||||
(version "2.9.0")
|
(version "4.8.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "geoip2" version))
|
(uri (pypi-uri "geoip2" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1w7cay5q6zawjzivqbwz5cqx1qbdjw6kbriccb7l46p7b39fkzzp"))))
|
"0ddcm6a0f5xr66r84hpn6jr6b7hl77axb0d41qj285ylny0c376x"))))
|
||||||
(build-system python-build-system)
|
(build-system pyproject-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f)) ;; Tests require a copy of the maxmind database
|
`(#:tests? #f)) ;; Tests require a copy of the maxmind database
|
||||||
(inputs
|
(inputs
|
||||||
(list python-maxminddb python-requests))
|
(list python-maxminddb
|
||||||
|
python-requests
|
||||||
|
python-aiohttp))
|
||||||
(home-page "https://www.maxmind.com/")
|
(home-page "https://www.maxmind.com/")
|
||||||
(synopsis "MaxMind GeoIP2 API")
|
(synopsis "MaxMind GeoIP2 API")
|
||||||
(description "Provides an API for the GeoIP2 web services and databases.
|
(description "Provides an API for the GeoIP2 web services and databases.
|
||||||
|
|
Reference in New Issue