Merge branch 'py/offline-distutils' into python-merge
Conflicts: pkgs/development/python-modules/generic/default.nix
This commit is contained in:
commit
ddbd5c2eba
4 changed files with 39 additions and 2 deletions
10
pkgs/development/python-modules/generic/builder.sh
Normal file
10
pkgs/development/python-modules/generic/builder.sh
Normal file
|
@ -0,0 +1,10 @@
|
|||
source $stdenv/setup
|
||||
|
||||
# do not allow distutils to make downloads, whatever install command is used
|
||||
export PYTHONPATH="${setuptools}/lib/${python.libPrefix}:$PYTHONPATH"
|
||||
export PYTHONPATH="${offlineDistutils}/lib/${python.libPrefix}:$PYTHONPATH"
|
||||
|
||||
# enable pth files for dependencies
|
||||
export PYTHONPATH="${site}/lib/${python.libPrefix}/site-packages:$PYTHONPATH"
|
||||
|
||||
genericBuild
|
|
@ -3,7 +3,7 @@
|
|||
(http://pypi.python.org/pypi/setuptools/), which represents a large
|
||||
number of Python packages nowadays. */
|
||||
|
||||
{ python, setuptools, wrapPython, lib }:
|
||||
{ python, setuptools, wrapPython, lib, offlineDistutils }:
|
||||
|
||||
{ name, namePrefix ? "python-"
|
||||
|
||||
|
@ -47,6 +47,8 @@ python.stdenv.mkDerivation (attrs // {
|
|||
|
||||
buildInputStrings = map toString buildInputs;
|
||||
|
||||
builder = ./builder.sh
|
||||
|
||||
pythonPath = [ setuptools] ++ pythonPath;
|
||||
|
||||
installPhase = ''
|
||||
|
|
|
@ -0,0 +1,21 @@
|
|||
# Used during module installation to prevent easy_install and python
|
||||
# setup.py install/test from downloading
|
||||
|
||||
{ stdenv, python }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "python-offline-distutils-${python.version}";
|
||||
|
||||
buildInputs = [ python ];
|
||||
|
||||
unpackPhase = "true";
|
||||
installPhase = ''
|
||||
dst="$out/lib/${python.libPrefix}"
|
||||
ensureDir $dst/distutils
|
||||
ln -s ${python}/lib/${python.libPrefix}/distutils/* $dst/distutils/
|
||||
cat <<EOF > $dst/distutils/distutils.cfg
|
||||
[easy_install]
|
||||
allow-hosts = None
|
||||
EOF
|
||||
'';
|
||||
}
|
|
@ -9,7 +9,7 @@ let pythonPackages = python.modules // rec {
|
|||
|
||||
buildPythonPackage = import ../development/python-modules/generic {
|
||||
inherit (pkgs) lib;
|
||||
inherit python wrapPython setuptools;
|
||||
inherit python wrapPython setuptools offlineDistutils;
|
||||
};
|
||||
|
||||
|
||||
|
@ -24,6 +24,10 @@ let pythonPackages = python.modules // rec {
|
|||
inherit python wrapPython;
|
||||
};
|
||||
|
||||
offlineDistutils = import ../development/python-modules/offline-distutils {
|
||||
inherit (pkgs) stdenv;
|
||||
inherit python;
|
||||
};
|
||||
|
||||
ipython = import ../shells/ipython {
|
||||
inherit (pkgs) stdenv fetchurl;
|
||||
|
|
Loading…
Reference in a new issue