forked from mirrors/nixpkgs
python3Packages.reportlab: patch path to freetype headers
This commit is contained in:
parent
a6bb82efd0
commit
11ffe5b562
|
@ -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…
Reference in a new issue