summary refs log tree commit diff
path: root/pkgs/development/python-modules/python-mapnik/default.nix
blob: 692bbe4bcd89c7fa5a19b74136910fe513a45e76 (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
{ stdenv
, buildPythonPackage
, fetchFromGitHub
, isPyPy
, python
, pkgs
, pillow
, pycairo
}:

buildPythonPackage rec {
  pname = "python-mapnik";
  version = "3.0.16";

  src = pkgs.fetchFromGitHub {
    owner = "mapnik";
    repo = "python-mapnik";
    rev = "v${version}";
    sha256 = "1gqs4kvmjawdgl80j0ab5r8y0va9kw0rvwix3093xsv4hwd00lcc";
  };

  disabled = isPyPy;
  doCheck = false; # doesn't find needed test data files
  preBuild = let
    pythonVersion = with stdenv.lib.versions; "${major python.version}${minor python.version}";
  in ''
    export BOOST_PYTHON_LIB="boost_python${pythonVersion}"
    export BOOST_THREAD_LIB="boost_thread"
    export BOOST_SYSTEM_LIB="boost_system"
  '';
  buildInputs = with pkgs; [
      (boost.override {
        enablePython = true;
        inherit python;
      })
      (mapnik.override {
        inherit python;
        boost = (boost.override { enablePython = true; inherit python; });
      })
      cairo
      harfbuzz
      icu
      libjpeg
      libpng
      libtiff
      libwebp
      proj
      zlib
    ];
  propagatedBuildInputs = [ pillow pycairo ];

  meta = with stdenv.lib; {
    description = "Python bindings for Mapnik";
    homepage = http://mapnik.org;
    license  = licenses.lgpl21;
  };

}