1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

enpass: use python3

This commit is contained in:
Martin Weinelt 2022-01-02 03:12:34 +01:00
parent a426bc246d
commit 4a896438b8
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

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}
'';