duplicity: use python2

This commit is contained in:
Frederik Rietdijk 2016-10-19 11:09:40 +02:00
parent 956abf3775
commit 9475510027

View File

@ -1,9 +1,9 @@
{ stdenv, fetchurl, pythonPackages, librsync, ncftp, gnupg, rsync, makeWrapper
{ stdenv, fetchurl, python2Packages, librsync, ncftp, gnupg, rsync, makeWrapper
}:
let
version = "0.7.07.1";
inherit (pythonPackages) boto ecdsa lockfile paramiko pycrypto python setuptools;
inherit (python2Packages) boto ecdsa lockfile paramiko pycrypto python setuptools;
in stdenv.mkDerivation {
name = "duplicity-${version}";