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

This commit is contained in:
Ivan Mincik
2025-03-12 08:27:25 +00:00
committed by GitHub
@@ -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 ];
};