dropbox-cli: replace python by python3 (#59115)

fix #59110
This commit is contained in:
bricewge
2019-04-07 22:52:53 +02:00
committed by xeji
parent 2aecd159b1
commit 544128587d

View File

@@ -1,4 +1,4 @@
{ stdenv, pkgconfig, fetchurl, python, dropbox }:
{ stdenv, pkgconfig, fetchurl, python3, dropbox }:
let
version = "2019.02.14";
dropboxd = "${dropbox}/bin/dropbox";
@@ -12,7 +12,7 @@ stdenv.mkDerivation {
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ python ];
buildInputs = [ python3 ];
phases = "unpackPhase installPhase";