mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 18:03:04 +00:00
use offline-disutils in buildPythonPackage
This commit is contained in:
parent
224251d104
commit
ad8a4c73fa
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-"
|
||||
|
||||
@ -45,6 +45,8 @@ python.stdenv.mkDerivation (attrs // {
|
||||
|
||||
buildInputs = [ python wrapPython setuptools ] ++ buildInputs ++ pythonPath;
|
||||
|
||||
builder = ./builder.sh
|
||||
|
||||
pythonPath = [ setuptools] ++ pythonPath;
|
||||
|
||||
# XXX: Should we run `easy_install --always-unzip'? It doesn't seem
|
||||
|
@ -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;
|
||||
};
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user