enpass: use python3

This commit is contained in:
Martin Weinelt
2022-01-02 03:12:34 +01:00
parent a426bc246d
commit 4a896438b8

View File

@@ -1,7 +1,7 @@
{ stdenv, fetchurl, dpkg, xorg
, glib, libGLU, libGL, libpulseaudio, zlib, dbus, fontconfig, freetype
, gtk3, pango
, makeWrapper , python2Packages, lib
, makeWrapper , python3Packages, lib
, lsof, curl, libuuid, cups, mesa, xz, libxkbcommon
}:
@@ -89,7 +89,7 @@ let
name = "enpass-update-script";
SCRIPT =./update_script.py;
buildInputs = with python2Packages; [python requests pathlib2 six attrs ];
buildInputs = with python3Packages; [python requests pathlib2 six attrs ];
shellHook = ''
exec python $SCRIPT --target pkgs/tools/security/enpass/data.json --repo ${baseUrl}
'';