python3Packages.rasterio: 1.4.4 -> 1.5.0

https://github.com/rasterio/rasterio/blob/1.5.0/CHANGES.txt

This commit was automatically generated using update-python-libraries.
This commit is contained in:
Martin Weinelt
2026-02-01 17:38:46 +01:00
parent 5ad978f1a3
commit ab94561c4f
@@ -38,19 +38,19 @@
buildPythonPackage rec {
pname = "rasterio";
version = "1.4.4";
version = "1.5.0";
pyproject = true;
src = fetchFromGitHub {
owner = "rasterio";
repo = "rasterio";
tag = version;
hash = "sha256-6y55JJ3R/JEEneM10UPHIDpSopaybY5XHJPiU+77ke4=";
hash = "sha256-Jg9GNw93uA+Lg7/kiQb+tfXXuoggQI0Nkz7cwRqq8FQ=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail "cython~=3.1.0" cython
--replace-fail "cython>=3.1,<=3.2" cython
'';
build-system = [
@@ -134,7 +134,7 @@ buildPythonPackage rec {
description = "Python package to read and write geospatial raster data";
mainProgram = "rio";
homepage = "https://rasterio.readthedocs.io/";
changelog = "https://github.com/rasterio/rasterio/blob/${version}/CHANGES.txt";
changelog = "https://github.com/rasterio/rasterio/blob/${src.tag}/CHANGES.txt";
license = lib.licenses.bsd3;
teams = [ lib.teams.geospatial ];
};