pythonPackages.ipythonLight: no qt/numpy dependency
This commit is contained in:
parent
da0694932c
commit
2cb87d9ca1
|
@ -5308,11 +5308,13 @@ let
|
||||||
# regardless.
|
# regardless.
|
||||||
python26Packages = import ./python-packages.nix {
|
python26Packages = import ./python-packages.nix {
|
||||||
inherit pkgs;
|
inherit pkgs;
|
||||||
|
inherit (lib) lowPrio;
|
||||||
python = python26;
|
python = python26;
|
||||||
};
|
};
|
||||||
|
|
||||||
python27Packages = recurseIntoAttrs (import ./python-packages.nix {
|
python27Packages = recurseIntoAttrs (import ./python-packages.nix {
|
||||||
inherit pkgs;
|
inherit pkgs;
|
||||||
|
inherit (lib) lowPrio;
|
||||||
python = python27;
|
python = python27;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ pkgs, python }:
|
{ pkgs, python, lowPrio }:
|
||||||
|
|
||||||
let
|
let
|
||||||
isPy26 = python.majorVersion == "2.6";
|
isPy26 = python.majorVersion == "2.6";
|
||||||
|
@ -53,6 +53,14 @@ pythonPackages = python.modules // rec {
|
||||||
inherit buildPythonPackage pythonPackages;
|
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 {
|
pil = import ../development/python-modules/pil {
|
||||||
inherit (pkgs) fetchurl stdenv libjpeg zlib freetype;
|
inherit (pkgs) fetchurl stdenv libjpeg zlib freetype;
|
||||||
inherit python buildPythonPackage;
|
inherit python buildPythonPackage;
|
||||||
|
|
Loading…
Reference in New Issue