python3Packages.py3exiv2: fix build

Recent boost versions name their `python3` shared objects
`boost_python3x` rather than `boost_python3`.

See https://hydra.nixos.org/build/80712295
Addresses #45960
This commit is contained in:
Maximilian Bosch
2018-09-24 14:32:50 +02:00
parent 4a9ca1d8bb
commit 50f23da8e6
2 changed files with 8 additions and 3 deletions

View File

@@ -5,7 +5,7 @@
return l.replace('libboost', 'boost')
-libboost = get_libboost_name()
+libboost = 'boost_python3'
+libboost = 'boost_python@version@'
setup(
name='py3exiv2',