Unverified Commit 1fa9724b authored by misuzu's avatar misuzu Committed by GitHub
Browse files

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

parents 57f64aab 97f74649
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -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;
  };