python312Packages.folium: 0.18.0 -> 0.19.2 (#365970)

This commit is contained in:
misuzu
2024-12-18 19:39:17 +02:00
committed by GitHub

View File

@@ -22,16 +22,16 @@
buildPythonPackage rec {
pname = "folium";
version = "0.18.0";
version = "0.19.2";
pyproject = true;
disabled = pythonOlder "3.7";
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "python-visualization";
repo = "folium";
rev = "refs/tags/v${version}";
hash = "sha256-TNj3javEETjWpI3xs1y/AuKHqFwnTBmWORZK2fafKqI=";
tag = "v${version}";
hash = "sha256-PBrrdFKEYj3yy+qV495It0HB9EVtJpjTY+oyls9Z/J0=";
};
nativeBuildInputs = [
@@ -76,7 +76,7 @@ buildPythonPackage rec {
meta = {
description = "Make beautiful maps with Leaflet.js & Python";
homepage = "https://github.com/python-visualization/folium";
changelog = "https://github.com/python-visualization/folium/blob/v${version}/CHANGES.txt";
changelog = "https://github.com/python-visualization/folium/releases/tag/${src.tag}";
license = with lib.licenses; [ mit ];
maintainers = lib.teams.geospatial.members;
};