* Add python-eventlet.

svn path=/nixpkgs/trunk/; revision=26046
This commit is contained in:
Eelco Dolstra 2011-02-21 21:49:20 +00:00
parent 237a852e85
commit 0dd10c6035

View file

@ -172,6 +172,30 @@ rec {
});
eventlet = buildPythonPackage rec {
name = "eventlet-0.9.14";
src = fetchurl {
url = "http://pypi.python.org/packages/source/e/eventlet/${name}.tar.gz";
md5 = "dfc96ed14b27392fdc529abcafeed880";
};
buildInputs = [ nose httplib2 ];
propagatedBuildInputs = [ greenlet ];
# It tries to scribble in ~/.python-eggs.
preConfigure = "export HOME=$(pwd)";
doCheck = false; # !!! fix; test requires ssl support in Python
meta = {
homepage = http://pypi.python.org/pypi/eventlet/;
description = "A concurrent networking library for Python";
};
};
flup = buildPythonPackage (rec {
name = "flup-1.0.2";