summary refs log tree commit diff
path: root/pkgs/development/python-modules/folium/default.nix
blob: 48b98a8e10183217c0271c30404f386571dc3671 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{ lib
, buildPythonPackage
, fetchFromGitHub
, 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=";
  };

  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 ];
  };
}