* Added `boto', a Python interface to AWS.

* Add boto as a dependency to duplicity to support backups to Amazon
  S3.

svn path=/nixpkgs/trunk/; revision=19913
This commit is contained in:
Eelco Dolstra
2010-02-10 18:10:22 +00:00
parent faa98ce5d6
commit dae4ffdfdf
3 changed files with 26 additions and 2 deletions

View File

@@ -34,6 +34,29 @@ rec {
};
});
boto = buildPythonPackage (rec {
name = "boto-1.9b";
src = fetchurl {
url = "http://boto.googlecode.com/files/${name}.tar.gz";
sha256 = "0kir3ddm79rxdf7wb5czmxpbnqzgj3j966q4mach29kkb98p48wz";
};
meta = {
homepage = http://code.google.com/p/boto/;
license = "bsd";
description = "Python interface to Amazon Web Services";
longDescription = ''
The boto module is an integrated interface to current and
future infrastructural services offered by Amazon Web
Services. This includes S3, SQS, EC2, among others.
'';
};
});
darcsver = buildPythonPackage (rec {
name = "darcsver-1.3.1";