diff options
| author | hacker1024 <hacker1024@users.sourceforge.net> | 2023-04-02 11:04:49 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-01 20:04:49 -0500 |
| commit | a4fcb461fe87122faec7ba2f8400e0e17402cac8 (patch) | |
| tree | 601edf2fdd4e48ee98532037ffb57871b4bd1d47 | |
| parent | Merge pull request #168380 from SomeoneSerge/faiss-cuda-split (diff) | |
| download | nixpkgs-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.nix | 3 |
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 \ |
