3
0
Fork 0
forked from mirrors/nixpkgs

* Added libcloud.

svn path=/nixpkgs/trunk/; revision=23355
This commit is contained in:
Eelco Dolstra 2010-08-23 10:17:30 +00:00
parent 53b8411c7a
commit 554b5f804a

View file

@ -239,6 +239,24 @@ rec {
};
};
libcloud = buildPythonPackage (rec {
name = "libcloud-0.3.1";
src = fetchurl {
url = mirror://apache/incubator/libcloud/apache-libcloud-incubating-0.3.1.tar.bz2;
sha256 = "11qilrs4sd4c1mkd64ikrjsc2vwrshhc54n5mh4xrark9c7ayp0y";
};
buildInputs = [ zopeInterface ];
preConfigure = "cp test/secrets.py-dist test/secrets.py";
meta = {
description = "A unified interface to many cloud providers";
homepage = http://incubator.apache.org/libcloud/;
};
});
lxml = buildPythonPackage ( rec {
name = "lxml-2.2.2";