diff options
author | tv <tv@krebsco.de> | 2023-01-12 03:06:18 +0100 |
---|---|---|
committer | tv <tv@krebsco.de> | 2023-01-13 00:54:39 +0100 |
commit | 59d6ab20b6acfb024d8f88dede18fb6a88437668 (patch) | |
tree | 9c6e09740f97e150050813ee669b13f241443ce9 /krebs | |
parent | 3fc184a22607952db257c9c76a6f8f1d7afd16d6 (diff) |
syncthing-device-id: use python3
Diffstat (limited to 'krebs')
-rw-r--r-- | krebs/5pkgs/simple/syncthing-device-id.nix | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/krebs/5pkgs/simple/syncthing-device-id.nix b/krebs/5pkgs/simple/syncthing-device-id.nix index 9533800fd..74983fc18 100644 --- a/krebs/5pkgs/simple/syncthing-device-id.nix +++ b/krebs/5pkgs/simple/syncthing-device-id.nix @@ -1,12 +1,13 @@ -{ openssl, writePython2Bin }: +{ openssl, writePython3Bin }: -writePython2Bin "syncthing-device-id" { +writePython3Bin "syncthing-device-id" { flakeIgnore = [ "E226" "E302" "E305" "E501" "F401" + "W504" ]; } /* python */ '' import base64 |