mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-06-06 13:23:41 +00:00
99 lines
2.2 KiB
Nix
99 lines
2.2 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pytestCheckHook,
|
|
|
|
geopandas,
|
|
libpysal,
|
|
matplotlib,
|
|
networkx,
|
|
numpy,
|
|
pandas,
|
|
scikit-learn,
|
|
scipy,
|
|
setuptools-scm,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "mapclassify";
|
|
version = "2.10.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pysal";
|
|
repo = "mapclassify";
|
|
tag = "v${version}";
|
|
hash = "sha256-OQpDrxa0zRPDAdyS6KP5enb/JZwbYoXTV8kUijV3tNM=";
|
|
};
|
|
|
|
build-system = [ setuptools-scm ];
|
|
|
|
propagatedBuildInputs = [
|
|
networkx
|
|
numpy
|
|
pandas
|
|
scikit-learn
|
|
scipy
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
geopandas
|
|
libpysal
|
|
matplotlib
|
|
];
|
|
|
|
# requires network access
|
|
disabledTestPaths = [
|
|
# this module does http requests *at import time*
|
|
"mapclassify/tests/test_greedy.py"
|
|
# depends on remote data
|
|
"mapclassify/tests/test_rgba.py"
|
|
];
|
|
|
|
disabledTests = [
|
|
# depends on remote datasets
|
|
"test_legendgram_map"
|
|
"test_legendgram_most_recent_cmap"
|
|
]
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
# RuntimeError: *** -[__NSPlaceholderArray initWithObjects:count:]: attempt to insert nil object from objects[1]
|
|
"test_legendgram_returns_axis"
|
|
"test_legendgram_standalone"
|
|
"test_legendgram_inset_false"
|
|
"test_legendgram_clip"
|
|
"test_legendgram_tick_params"
|
|
"test_legendgram_frameon"
|
|
"test_legendgram_default"
|
|
"test_legendgram_vlines"
|
|
"test_legendgram_cmap"
|
|
"test_legendgram_cmap_class"
|
|
"test_legendgram_position"
|
|
"test_legendgram_kwargs"
|
|
"test_histogram_plot"
|
|
"test_histogram_plot_despine"
|
|
"test_histogram_plot_linewidth"
|
|
"test_no_classify_default"
|
|
"test_pass_in_ax"
|
|
"test_classify_xy_redblue"
|
|
"test_divergent_revert_alpha_min_alpha"
|
|
"test_userdefined_colors"
|
|
"test_shifted_colormap"
|
|
"test_truncated_colormap"
|
|
"test_legend"
|
|
"test_legend_kwargs"
|
|
];
|
|
|
|
pythonImportsCheck = [ "mapclassify" ];
|
|
|
|
meta = {
|
|
description = "Classification Schemes for Choropleth Maps";
|
|
homepage = "https://pysal.org/mapclassify/";
|
|
changelog = "https://github.com/pysal/mapclassify/releases/tag/${src.tag}";
|
|
license = lib.licenses.bsd3;
|
|
teams = [ lib.teams.geospatial ];
|
|
};
|
|
}
|