summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhacker1024 <hacker1024@users.sourceforge.net>2023-04-02 11:04:49 +1000
committerGitHub <noreply@github.com>2023-04-01 20:04:49 -0500
commita4fcb461fe87122faec7ba2f8400e0e17402cac8 (patch)
tree601edf2fdd4e48ee98532037ffb57871b4bd1d47
parentMerge pull request #168380 from SomeoneSerge/faiss-cuda-split (diff)
downloadnixpkgs-a4fcb461fe87122faec7ba2f8400e0e17402cac8.tar.gz
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>
-rw-r--r--pkgs/development/python-modules/reportlab/default.nix3
1 files changed, 2 insertions, 1 deletions
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 \