mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 07:00:43 +00:00
pythonPackages.ipythonLight: no qt/numpy dependency
This commit is contained in:
parent
da0694932c
commit
2cb87d9ca1
|
@ -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;
|
||||
});
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue