Unverified Commit ceaa7625 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

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

parents 908bdc03 ec64070f
Loading
Loading
Loading
Loading
+6 −8
Original line number Diff line number Diff line
@@ -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
    ];
  };
}
})