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

authored by

Ivan Mincik and committed by
GitHub
76f2ce13 226e1986

+4 -4
+4 -4
pkgs/development/python-modules/rtree/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "rtree"; 16 - version = "1.3.0"; 16 + version = "1.4.0"; 17 17 pyproject = true; 18 18 19 - disabled = pythonOlder "3.8"; 19 + disabled = pythonOlder "3.9"; 20 20 21 21 src = fetchFromGitHub { 22 22 owner = "Toblerity"; 23 23 repo = "rtree"; 24 24 tag = version; 25 - hash = "sha256-yuSPRb8SRz+FRmwFCKDx+gtp9IWaneQ84jDuZP7TX0A="; 25 + hash = "sha256-swFvo57EUy69OInJNQzOzhjmfEIGL0aJSvYhzcmSzSs="; 26 26 }; 27 27 28 28 postPatch = '' ··· 47 47 meta = with lib; { 48 48 description = "R-Tree spatial index for Python GIS"; 49 49 homepage = "https://github.com/Toblerity/rtree"; 50 - changelog = "https://github.com/Toblerity/rtree/blob/${version}/CHANGES.rst"; 50 + changelog = "https://github.com/Toblerity/rtree/blob/${src.tag}/CHANGES.rst"; 51 51 license = licenses.mit; 52 52 maintainers = with maintainers; teams.geospatial.members ++ [ bgamari ]; 53 53 };