nominatim: 5.1.0 -> 5.2.0 (#458062)

This commit is contained in:
Ivan Mincik
2025-11-06 07:48:33 +00:00
committed by GitHub
2 changed files with 6 additions and 4 deletions
+4 -2
View File
@@ -4,6 +4,7 @@
fetchFromGitHub,
hatchling,
async-timeout,
psycopg,
pyicu,
python-dotenv,
@@ -13,14 +14,14 @@
buildPythonPackage rec {
pname = "nominatim";
version = "5.1.0";
version = "5.2.0";
pyproject = true;
src = fetchFromGitHub {
owner = "osm-search";
repo = "Nominatim";
tag = "v${version}";
hash = "sha256-eMCXXPrUZvM4ju0mi1+f+LXhThCCCEH+HDz6lurw+Jo=";
hash = "sha256-ao4oEPz5rtRQtPC2UcIHH1M+o914JraASf+hcB2SDKA=";
};
postPatch = ''
@@ -38,6 +39,7 @@ buildPythonPackage rec {
];
dependencies = [
async-timeout
psycopg
pyicu
python-dotenv
+2 -2
View File
@@ -21,14 +21,14 @@ let
in
python3Packages.buildPythonApplication rec {
pname = "nominatim";
version = "5.1.0";
version = "5.2.0";
pyproject = true;
src = fetchFromGitHub {
owner = "osm-search";
repo = "Nominatim";
tag = "v${version}";
hash = "sha256-eMCXXPrUZvM4ju0mi1+f+LXhThCCCEH+HDz6lurw+Jo=";
hash = "sha256-ao4oEPz5rtRQtPC2UcIHH1M+o914JraASf+hcB2SDKA=";
};
postPatch = ''