3
0
Fork 0
forked from mirrors/nixpkgs

pythonPackages.ipythonLight: no qt/numpy dependency

This commit is contained in:
Florian Friesdorf 2013-04-13 10:02:17 +02:00
parent da0694932c
commit 2cb87d9ca1
2 changed files with 11 additions and 1 deletions

View file

@ -5308,11 +5308,13 @@ let
# regardless.
python26Packages = import ./python-packages.nix {
inherit pkgs;
inherit (lib) lowPrio;
python = python26;
};
python27Packages = recurseIntoAttrs (import ./python-packages.nix {
inherit pkgs;
inherit (lib) lowPrio;
python = python27;
});

View file

@ -1,4 +1,4 @@
{ pkgs, python }:
{ pkgs, python, lowPrio }:
let
isPy26 = python.majorVersion == "2.6";
@ -53,6 +53,14 @@ pythonPackages = python.modules // rec {
inherit buildPythonPackage pythonPackages;
};
ipythonLight = lowPrio (import ../shells/ipython {
inherit (pkgs) stdenv fetchurl;
inherit buildPythonPackage pythonPackages;
qtconsoleSupport = false;
pylabSupport = false;
pylabQtSupport = false;
});
pil = import ../development/python-modules/pil {
inherit (pkgs) fetchurl stdenv libjpeg zlib freetype;
inherit python buildPythonPackage;