Unverified Commit 76f2ce13 authored by Ivan Mincik's avatar Ivan Mincik Committed by GitHub
Browse files

python312Packages.rtree: 1.3.0 -> 1.4.0 (#388949)

parents 226e1986 bc7a3318
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -13,16 +13,16 @@

buildPythonPackage rec {
  pname = "rtree";
  version = "1.3.0";
  version = "1.4.0";
  pyproject = true;

  disabled = pythonOlder "3.8";
  disabled = pythonOlder "3.9";

  src = fetchFromGitHub {
    owner = "Toblerity";
    repo = "rtree";
    tag = version;
    hash = "sha256-yuSPRb8SRz+FRmwFCKDx+gtp9IWaneQ84jDuZP7TX0A=";
    hash = "sha256-swFvo57EUy69OInJNQzOzhjmfEIGL0aJSvYhzcmSzSs=";
  };

  postPatch = ''
@@ -47,7 +47,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "R-Tree spatial index for Python GIS";
    homepage = "https://github.com/Toblerity/rtree";
    changelog = "https://github.com/Toblerity/rtree/blob/${version}/CHANGES.rst";
    changelog = "https://github.com/Toblerity/rtree/blob/${src.tag}/CHANGES.rst";
    license = licenses.mit;
    maintainers = with maintainers; teams.geospatial.members ++ [ bgamari ];
  };