3
0
Fork 0
forked from mirrors/nixpkgs

Merge branch 'py/always-unzip' into python-merge

Conflicts:
	pkgs/development/python-modules/generic/default.nix
This commit is contained in:
Florian Friesdorf 2012-11-22 13:39:05 +01:00
commit 24fd592d64

View file

@ -19,7 +19,7 @@
, installCommand ?
''
easy_install --prefix="$out" .
easy_install --always-unzip --prefix="$out" .
# A pth file might have been generated to load the package from
# within its own site-packages, rename this package not to
@ -63,8 +63,6 @@ python.stdenv.mkDerivation (attrs // {
pythonPath = [ setuptools] ++ pythonPath;
# XXX: Should we run `easy_install --always-unzip'? It doesn't seem
# to have a noticeable impact on small scripts.
installPhase = ''
mkdir -p "$out/lib/${python.libPrefix}/site-packages"