py-reportlab: add missing dependency on freetype (#29611)

* py-reportlab: add missing dependency on freetype

* Add missing dependencies

* Update var/spack/repos/builtin/packages/py-reportlab/package.py

Use pil virtual.

Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>

Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
This commit is contained in:
Glenn Johnson 2022-03-29 20:43:12 -05:00 committed by GitHub
parent 0367b73ed5
commit 7cfe626e21
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,3 +19,8 @@ class PyReportlab(PythonPackage):
# - easy_install, provided by py-setuptools
# - pip, provided by py-pip
extends('python', ignore=r'bin/.*')
depends_on('py-setuptools@2.2:', type='build')
depends_on('py-pip@1.4.1:', type='build')
depends_on('pil@2.4.0:', type=('build', 'run'))
depends_on('freetype')