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