Moving the preConfigure command into the installCommand 'fixes' pycurl.
This commit is contained in:
Cillian de Róiste 2012-11-27 23:50:24 +01:00
parent a5d5502100
commit 671bf5b4d7

View File

@ -1852,12 +1852,11 @@ let pythonPackages = python.modules // rec {
doCheck = false; doCheck = false;
preConfigure = '' installCommand = ''
substituteInPlace setup.py --replace '--static-libs' '--libs' substituteInPlace setup.py --replace '--static-libs' '--libs'
python setup.py install --prefix=$out
''; '';
installCommand = "python setup.py install --prefix=$out";
meta = { meta = {
homepage = http://pycurl.sourceforge.net/; homepage = http://pycurl.sourceforge.net/;
description = "Python wrapper for libcurl"; description = "Python wrapper for libcurl";