python311Packages.python-mapnik: use boost182 instead of the default

The import checks didn't pass because of a boost binding problem solved
by https://github.com/boostorg/python/pull/385.
This commit is contained in:
Paul Dettorer Hervot 2023-05-13 22:07:07 +02:00
parent ec27bb35e3
commit 843f13924b
2 changed files with 3 additions and 3 deletions

View File

@ -8,7 +8,7 @@
, pillow
, pycairo
, pkg-config
, boost
, boost182
, cairo
, harfbuzz
, icu
@ -60,7 +60,7 @@ buildPythonPackage rec {
buildInputs = [
mapnik
boost
boost182
cairo
harfbuzz
icu

View File

@ -9753,7 +9753,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;
};