python3Packages.nominatim-api: 5.3.0 -> 5.3.1 (#509463)

This commit is contained in:
Fabian Affolter
2026-04-13 11:07:15 +00:00
committed by GitHub
+6 -8
View File
@@ -12,16 +12,16 @@
sqlalchemy,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "nominatim";
version = "5.3.0";
version = "5.3.1";
pyproject = true;
src = fetchFromGitHub {
owner = "osm-search";
repo = "Nominatim";
tag = "v${version}";
hash = "sha256-cICDzsEJ2yRi8PaQpjfVC9ZI3KeQPiqGu4U1nTxxBvk=";
tag = "v${finalAttrs.version}";
hash = "sha256-3WU8n121JbFFZTntcKG6t0x2mC1AzI97q/fMe/UTGTs=";
};
postPatch = ''
@@ -34,9 +34,7 @@ buildPythonPackage rec {
cd packaging/nominatim-api
'';
build-system = [
hatchling
];
build-system = [ hatchling ];
dependencies = [
async-timeout
@@ -61,4 +59,4 @@ buildPythonPackage rec {
ngi
];
};
}
})