b450903751
GitOrigin-RevId: 74a1793c659d09d7cf738005308b1f86c90cb59b
74 lines
1.4 KiB
Nix
74 lines
1.4 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, fetchpatch
|
|
, pythonOlder
|
|
, pytestCheckHook
|
|
, branca
|
|
, jinja2
|
|
, nbconvert
|
|
, numpy
|
|
, pandas
|
|
, pillow
|
|
, requests
|
|
, selenium
|
|
, setuptools-scm
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "folium";
|
|
version = "0.12.1.post1";
|
|
|
|
disabled = pythonOlder "3.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "python-visualization";
|
|
repo = "folium";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-4UseN/3ojZdDUopwZLpHZEBon1qDDvCWfdzxodi/BeA=";
|
|
};
|
|
|
|
patches = [
|
|
# Fix test failures with latest branca
|
|
(fetchpatch {
|
|
url = "https://github.com/python-visualization/folium/commit/b410ab21cc46ec6756c2f755e5e81dcdca029c53.patch";
|
|
hash = "sha256-SVN4wKEep+VnAKnkJTf59rhnzHnbk6dV9XL5ntv4bog=";
|
|
})
|
|
];
|
|
|
|
SETUPTOOLS_SCM_PRETEND_VERSION = "v${version}";
|
|
|
|
nativeBuildInputs = [
|
|
setuptools-scm
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
branca
|
|
jinja2
|
|
numpy
|
|
requests
|
|
];
|
|
|
|
checkInputs = [
|
|
nbconvert
|
|
pytestCheckHook
|
|
pandas
|
|
pillow
|
|
selenium
|
|
];
|
|
|
|
disabledTests = [
|
|
# requires internet connection
|
|
"test_geojson"
|
|
"test_heat_map_with_weights"
|
|
"test_json_request"
|
|
"test_notebook"
|
|
];
|
|
|
|
meta = {
|
|
description = "Make beautiful maps with Leaflet.js & Python";
|
|
homepage = "https://github.com/python-visualization/folium";
|
|
license = with lib.licenses; [ mit ];
|
|
maintainers = with lib.maintainers; [ fridh ];
|
|
};
|
|
}
|