mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
python.pkgs.imread: inherit native libs on callsite
this avoids potential namespace collisions between python libs and packages from all-packags.nix: https://github.com/NixOS/nixpkgs/pull/61033#issuecomment-489926103
This commit is contained in:
parent
6bcc5e2080
commit
a3f8a25ab3
1 changed files with 3 additions and 1 deletions
|
@ -2028,7 +2028,9 @@ in {
|
|||
|
||||
immutables = callPackage ../development/python-modules/immutables {};
|
||||
|
||||
imread = callPackage ../development/python-modules/imread { };
|
||||
imread = callPackage ../development/python-modules/imread {
|
||||
inherit (pkgs) pkgconfig libjpeg libpng libtiff libwebp;
|
||||
};
|
||||
|
||||
imaplib2 = callPackage ../development/python-modules/imaplib2 { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue