mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 23:20:55 +00:00
#185 Fix pycurl
Moving the preConfigure command into the installCommand 'fixes' pycurl.
This commit is contained in:
parent
a5d5502100
commit
671bf5b4d7
|
@ -1852,12 +1852,11 @@ let pythonPackages = python.modules // rec {
|
|||
|
||||
doCheck = false;
|
||||
|
||||
preConfigure = ''
|
||||
substituteInPlace setup.py --replace '--static-libs' '--libs'
|
||||
installCommand = ''
|
||||
substituteInPlace setup.py --replace '--static-libs' '--libs'
|
||||
python setup.py install --prefix=$out
|
||||
'';
|
||||
|
||||
installCommand = "python setup.py install --prefix=$out";
|
||||
|
||||
meta = {
|
||||
homepage = http://pycurl.sourceforge.net/;
|
||||
description = "Python wrapper for libcurl";
|
||||
|
|
Loading…
Reference in a new issue