* Added python-greenlet and python-httplib2.

svn path=/nixpkgs/trunk/; revision=26045
This commit is contained in:
Eelco Dolstra 2011-02-21 17:26:19 +00:00
parent f053b6eec1
commit 237a852e85
1 changed files with 33 additions and 0 deletions

View File

@ -171,6 +171,7 @@ rec {
};
});
flup = buildPythonPackage (rec {
name = "flup-1.0.2";
@ -265,6 +266,38 @@ rec {
};
greenlet = buildPythonPackage rec {
name = "greenlet-0.3.1";
src = fetchurl {
url = "http://pypi.python.org/packages/source/g/greenlet/${name}.tar.gz";
md5 = "8d75d7f3f659e915e286e1b0fa0e1c4d";
};
meta = {
homepage = http://pypi.python.org/pypi/greenlet;
description = "Module for lightweight in-process concurrent programming";
};
};
httplib2 = buildPythonPackage rec {
name = "httplib2-0.6.0";
src = fetchurl {
url = "http://httplib2.googlecode.com/files/${name}.tar.gz";
sha256 = "134pldyxayc0x4akzzvkciz2kj1w2dsim1xvd9b1qrpmba70dpjq";
};
doCheck = false; # doesn't have a test
meta = {
homepage = http://code.google.com/p/httplib2/;
description = "A comprehensive HTTP client library";
};
};
jinja2 = buildPythonPackage {
name = "jinja2-2.2.1";