From a4fcb461fe87122faec7ba2f8400e0e17402cac8 Mon Sep 17 00:00:00 2001 From: hacker1024 Date: Sun, 2 Apr 2023 11:04:49 +1000 Subject: [PATCH] python310Packages.reportlab: Move Pillow into propagatedBuildInputs (#216761) * reportlab: Move Pillow into propagatedBuildInputs Pillow needs to be available at runtime, as it is a Python package. Co-authored-by: panicgh <79252025+panicgh@users.noreply.github.com> --- pkgs/development/python-modules/reportlab/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/reportlab/default.nix b/pkgs/development/python-modules/reportlab/default.nix index 9890eb98f834..460adce799ab 100644 --- a/pkgs/development/python-modules/reportlab/default.nix +++ b/pkgs/development/python-modules/reportlab/default.nix @@ -25,7 +25,8 @@ in buildPythonPackage rec { nativeCheckInputs = [ glibcLocales ]; - buildInputs = [ ft pillow ]; + buildInputs = [ ft ]; + propagatedBuildInputs = [ pillow ]; postPatch = '' substituteInPlace setup.py \