* Boto updated to 2.3.0.

svn path=/nixpkgs/trunk/; revision=33437
This commit is contained in:
Eelco Dolstra 2012-03-27 10:48:45 +00:00
parent e85794243f
commit bb311ce1d0

View File

@ -174,16 +174,19 @@ let pythonPackages = python.modules // rec {
});
boto = buildPythonPackage (rec {
name = "boto-2.0b4";
boto = buildPythonPackage rec {
name = "boto-2.3.0";
src = fetchurl {
url = "http://boto.googlecode.com/files/${name}.tar.gz";
sha1 = "3e1deab58b8432d01baef1d37f17cbf6fa999f8d";
url = "https://github.com/downloads/boto/boto/${name}.tar.gz";
sha256 = "05im9vyk9wq8cjw4cp93jlqb9v98rnrm067p93ih7f0ynnlnjaf1";
};
# The tests seem to require AWS credentials.
doCheck = false;
meta = {
homepage = http://code.google.com/p/boto/;
homepage = https://github.com/boto/boto;
license = "bsd";
@ -195,7 +198,7 @@ let pythonPackages = python.modules // rec {
Services. This includes S3, SQS, EC2, among others.
'';
};
});
};
carrot = buildPythonPackage rec {