python3Packages.reportlab: patch path to freetype headers

main
Martin Weinelt 2 years ago
parent a6bb82efd0
commit 11ffe5b562
  1. 6
      pkgs/development/python-modules/reportlab/default.nix

@ -1,4 +1,5 @@
{ buildPythonPackage
{ lib
, buildPythonPackage
, fetchPypi
, freetype
, pillow
@ -23,6 +24,9 @@ in buildPythonPackage rec {
buildInputs = [ ft pillow ];
postPatch = ''
substituteInPlace setup.py \
--replace "mif = findFile(d,'ft2build.h')" "mif = findFile('${lib.getDev ft}','ft2build.h')"
# Remove all the test files that require access to the internet to pass.
rm tests/test_lib_utils.py
rm tests/test_platypus_general.py

Loading…
Cancel
Save