pil for python27 and python26

This commit is contained in:
Florian Friesdorf 2012-12-03 07:11:26 +01:00
parent e517d8791f
commit d76e4420af
2 changed files with 4 additions and 1 deletions

View File

@ -5236,7 +5236,7 @@ let
numeric = callPackage ../development/python-modules/numeric { };
pil = callPackage ../development/python-modules/pil { };
pil = python27Packages.pil;
psyco = callPackage ../development/python-modules/psyco { };

View File

@ -39,6 +39,9 @@ let pythonPackages = python.modules // rec {
inherit buildPythonPackage pythonPackages;
};
pil = import ../development/python-modules/pil {
inherit (pkgs) fetchurl stdenv python libjpeg zlib freetype;
};
wrapPython = pkgs.makeSetupHook
{ deps = pkgs.makeWrapper;