python312Packages.geocoder: init at 1.38.1

Geocoder is a simple and consistent

https://pypi.org/project/geocoder/
This commit is contained in:
Fabian Affolter
2024-03-31 17:32:57 +02:00
parent 3d8b76d951
commit 7b760892d2
2 changed files with 49 additions and 0 deletions
@@ -0,0 +1,47 @@
{ lib
, buildPythonPackage
, click
, fetchPypi
, future
, pythonOlder
, ratelim
, requests
, setuptools
, six
}:
buildPythonPackage rec {
pname = "geocoder";
version = "1.38.1";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-yZJTdMlhV30K7kA7Ceb46hlx2RPwEfAMpwx2vq96d+c=";
};
build-system = [
setuptools
];
dependencies = [
click
future
ratelim
requests
six
];
pythonImportsCheck = [
"geocoder"
];
meta = with lib; {
description = "Module for geocoding";
homepage = "https://pypi.org/project/geocoder/";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}
+2
View File
@@ -4635,6 +4635,8 @@ self: super: with self; {
geocachingapi = callPackage ../development/python-modules/geocachingapi { };
geocoder = callPackage ../development/python-modules/geocoder { };
geographiclib = callPackage ../development/python-modules/geographiclib { };
geoip2 = callPackage ../development/python-modules/geoip2 { };