mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
offlineDistutils in PYTHONPATH in configurePhase instead of builder.sh
Conflicts: pkgs/development/python-modules/generic/default.nix
This commit is contained in:
parent
ccb5d0fc19
commit
74d963c69a
|
@ -1,6 +0,0 @@
|
|||
source $stdenv/setup
|
||||
|
||||
# do not allow distutils to make downloads, whatever install command is used
|
||||
export PYTHONPATH="${offlineDistutils}/lib/${python.libPrefix}:$PYTHONPATH"
|
||||
|
||||
genericBuild
|
|
@ -32,6 +32,7 @@
|
|||
python setup.py test
|
||||
runHook postCheck
|
||||
''
|
||||
, configurePhase ? "true"
|
||||
|
||||
, postInstall ? ""
|
||||
|
||||
|
@ -45,7 +46,12 @@ python.stdenv.mkDerivation (attrs // {
|
|||
|
||||
buildInputs = [ python wrapPython setuptools ] ++ buildInputs ++ pythonPath;
|
||||
|
||||
builder = ./builder.sh;
|
||||
buildInputStrings = map toString buildInputs;
|
||||
|
||||
configurePhase = ''
|
||||
export PYTHONPATH="${offlineDistutils}/lib/${python.libPrefix}:$PYTHONPATH"
|
||||
${configurePhase}
|
||||
'';
|
||||
|
||||
pythonPath = [ setuptools] ++ pythonPath;
|
||||
|
||||
|
|
Loading…
Reference in a new issue