Skip to content

Commit

Permalink
Merge pull request #231735 from Dettorer/fix-mapnik
Browse files Browse the repository at this point in the history
python3Packages.python-mapnik: fix build on x86_64
  • Loading branch information
mweinelt authored May 14, 2023
2 parents 285330f + cfe4464 commit 9ab371d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
11 changes: 9 additions & 2 deletions pkgs/development/python-modules/python-mapnik/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
, pillow
, pycairo
, pkg-config
, boost
, boost182
, cairo
, harfbuzz
, icu
Expand All @@ -23,6 +23,7 @@
, sqlite
, nose
, pytestCheckHook
, stdenv
}:

buildPythonPackage rec {
Expand Down Expand Up @@ -60,7 +61,7 @@ buildPythonPackage rec {

buildInputs = [
mapnik
boost
boost182
cairo
harfbuzz
icu
Expand Down Expand Up @@ -98,6 +99,9 @@ buildPythonPackage rec {
preCheck = ''
# import from $out
rm -r mapnik
'' + lib.optionalString stdenv.isDarwin ''
# Replace the hardcoded /tmp references with $TMPDIR
sed -i "s,/tmp,$TMPDIR,g" test/python_tests/*.py
'';

# https://github.com/mapnik/python-mapnik/issues/255
Expand All @@ -106,6 +110,7 @@ buildPythonPackage rec {
"test_compare_map"
"test_dataraster_coloring"
"test_dataraster_query_point"
"test_geometry_type"
"test_good_files"
"test_layer_init"
"test_load_save_map"
Expand All @@ -128,6 +133,8 @@ buildPythonPackage rec {
"test_visual_zoom_all_rendering1"
"test_visual_zoom_all_rendering2"
"test_wgs84_inverse_forward"
] ++ lib.optional stdenv.isDarwin [
"test_passing_pycairo_context_pdf"
];

pythonImportsCheck = [ "mapnik" ];
Expand Down
2 changes: 1 addition & 1 deletion pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9757,7 +9757,7 @@ self: super: with self; {

python-mapnik = callPackage ../development/python-modules/python-mapnik rec {
inherit (pkgs) pkg-config cairo icu libjpeg libpng libtiff libwebp proj zlib;
boost = pkgs.boost.override {
boost182 = pkgs.boost182.override {
enablePython = true;
inherit python;
};
Expand Down

0 comments on commit 9ab371d

Please sign in to comment.