python3Packages.geopandas: 1.0.1 -> 1.1.1

https://github.com/geopandas/geopandas/blob/v1.1.1/CHANGELOG.md

This commit was automatically generated using update-python-libraries.
This commit is contained in:
Martin Weinelt
2025-08-09 18:59:33 +02:00
parent 3a57afb3f1
commit fa43881e7c
@@ -1,11 +1,8 @@
{
lib,
stdenv,
buildPythonPackage,
fetchFromGitHub,
fetchpatch,
pytestCheckHook,
pythonOlder,
setuptools,
packaging,
@@ -29,27 +26,16 @@
buildPythonPackage rec {
pname = "geopandas";
version = "1.0.1";
version = "1.1.1";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "geopandas";
repo = "geopandas";
tag = "v${version}";
hash = "sha256-SZizjwkx8dsnaobDYpeQm9jeXZ4PlzYyjIScnQrH63Q=";
hash = "sha256-7ZsO4jresikA17M8cyHskdcVnTscGHxTCLJv5p1SvfI=";
};
patches = [
(fetchpatch {
# Remove geom_almost_equals, because it broke with shapely 2.1.0 and is not being updated
url = "https://github.com/geopandas/geopandas/commit/0e1f871a02e9612206dcadd6817284131026f61c.patch";
excludes = [ "CHANGELOG.md" ];
hash = "sha256-n9AmmbjjNwV66lxDQV2hfkVVfxRgMfEGfHZT6bql684=";
})
];
build-system = [ setuptools ];
dependencies = [
@@ -102,7 +88,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Python geospatial data analysis framework";
homepage = "https://geopandas.org";
changelog = "https://github.com/geopandas/geopandas/blob/v${version}/CHANGELOG.md";
changelog = "https://github.com/geopandas/geopandas/blob/${src.tag}/CHANGELOG.md";
license = licenses.bsd3;
teams = [ teams.geospatial ];
};