* 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
+2 -2
View File
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, python, librsync, gnupg, makeWrapper }:
{ stdenv, fetchurl, python, librsync, gnupg, boto, makeWrapper }:
stdenv.mkDerivation {
name = "duplicity-0.6.06";
@@ -11,7 +11,7 @@ stdenv.mkDerivation {
installPhase = ''
python setup.py install --prefix=$out
wrapProgram $out/bin/duplicity \
--prefix PYTHONPATH : "$(toPythonPath $out)" \
--prefix PYTHONPATH : "$(toPythonPath $out):$(toPythonPath ${boto})" \
--prefix PATH : "${gnupg}/bin"
'';