Fernando Rodrigues 05580f4b44
treewide: switch instances of lib.teams.*.members to the new meta.teams attribute
Follow-up to #394797.

Signed-off-by: Fernando Rodrigues <alpha@sigmasquadron.net>
2025-04-25 22:20:17 -03:00

86 lines
1.6 KiB
Nix

{
lib,
branca,
buildPythonPackage,
fetchFromGitHub,
geodatasets,
geopandas,
jinja2,
nbconvert,
numpy,
pandas,
pillow,
pytestCheckHook,
pythonOlder,
requests,
selenium,
setuptools,
setuptools-scm,
xyzservices,
}:
buildPythonPackage rec {
pname = "folium";
version = "0.19.5";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "python-visualization";
repo = "folium";
tag = "v${version}";
hash = "sha256-jZrGJWSmQXQNlZYldeNSh5AhlTHow5gxCEkksEoKZ7E=";
};
build-system = [
setuptools
setuptools-scm
];
dependencies = [
branca
jinja2
numpy
requests
xyzservices
];
nativeCheckInputs = [
geodatasets
geopandas
nbconvert
pandas
pillow
pytestCheckHook
];
disabledTests = [
# Tests require internet connection
"test__repr_png_is_bytes"
"test_geojson"
"test_heat_map_with_weights"
"test_json_request"
"test_notebook"
"test_valid_png_size"
"test_valid_png"
# pooch tries to write somewhere it can, and geodatasets does not give us an env var to customize this.
"test_timedynamic_geo_json"
];
disabledTestPaths = [
# Import issue with selenium.webdriver.common.fedcm
"tests/selenium"
];
pythonImportsCheck = [ "folium" ];
meta = {
description = "Make beautiful maps with Leaflet.js & Python";
homepage = "https://github.com/python-visualization/folium";
changelog = "https://github.com/python-visualization/folium/releases/tag/${src.tag}";
license = with lib.licenses; [ mit ];
teams = [ lib.teams.geospatial ];
};
}