added unzip to buildPythonPackage's buildInputs - used quite often

authored by: chaoflow, goibhniu

svn path=/nixpkgs/branches/stdenv-updates/; revision=32624
This commit is contained in:
Florian Friesdorf
2012-02-27 17:33:55 +00:00
parent 2a6597f5cb
commit 9e646d4689
2 changed files with 5 additions and 11 deletions

View File

@@ -3,7 +3,7 @@
(http://pypi.python.org/pypi/setuptools/), which represents a large
number of Python packages nowadays. */
{ python, setuptools, wrapPython, lib, site, offlineDistutils }:
{ python, setuptools, wrapPython, lib, site, offlineDistutils, unzip }:
{ name, namePrefix ? "python-"
@@ -71,7 +71,7 @@ python.stdenv.mkDerivation (attrs // {
name = namePrefix + name;
buildInputs = [ python wrapPython setuptools ] ++ buildInputs ++ pythonPath;
buildInputs = [ python wrapPython setuptools unzip ] ++ buildInputs ++ pythonPath;
preConfigure = ''
# do not allow distutils to make downloads, whatever install command is used