mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-05 09:11:39 -05:00
Adopt nixpkgs pillow preConfigure script
This commit is contained in:
parent
bb9a82da44
commit
e204959568
1 changed files with 6 additions and 1 deletions
|
@ -1351,13 +1351,18 @@ lib.composeManyExtensions [
|
||||||
);
|
);
|
||||||
|
|
||||||
pillow = super.pillow.overridePythonAttrs (
|
pillow = super.pillow.overridePythonAttrs (
|
||||||
old: {
|
old:
|
||||||
|
let
|
||||||
|
preConfigure = (old.preConfigure or "") + pkgs.python3.pkgs.pillow.preConfigure;
|
||||||
|
in
|
||||||
|
{
|
||||||
nativeBuildInputs = (old.nativeBuildInputs or [ ])
|
nativeBuildInputs = (old.nativeBuildInputs or [ ])
|
||||||
++ [ pkg-config self.pytest-runner ];
|
++ [ pkg-config self.pytest-runner ];
|
||||||
buildInputs = with pkgs; (old.buildInputs or [ ])
|
buildInputs = with pkgs; (old.buildInputs or [ ])
|
||||||
++ [ freetype libjpeg zlib libtiff libwebp tcl lcms2 ]
|
++ [ freetype libjpeg zlib libtiff libwebp tcl lcms2 ]
|
||||||
++ lib.optionals (lib.versionAtLeast old.version "7.1.0") [ xorg.libxcb ]
|
++ lib.optionals (lib.versionAtLeast old.version "7.1.0") [ xorg.libxcb ]
|
||||||
++ lib.optionals (self.isPyPy) [ tk xorg.libX11 ];
|
++ lib.optionals (self.isPyPy) [ tk xorg.libX11 ];
|
||||||
|
preConfigure = lib.optional (old.format != "wheel") preConfigure;
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue