generate-secrets: fix python version for rpcauth

I accidentally included the minor version number.
Version 3.5 has been removed from nixpkgs unstable.
This commit is contained in:
Erik Arvstedt 2020-09-24 16:32:38 +02:00
parent 43cac9d35e
commit 774da9d4e0
No known key found for this signature in database
GPG Key ID: 33312B944DD97846

View File

@ -6,7 +6,7 @@ let
sha256 = "189mpplam6yzizssrgiyv70c9899ggh8cac76j4n7v0xqzfip07n";
};
rpcauth = pkgs.writeScriptBin "rpcauth" ''
exec ${pkgs.python35}/bin/python ${rpcauthSrc} "$@"
exec ${pkgs.python3}/bin/python ${rpcauthSrc} "$@"
'';
in
writeScript "generate-secrets" ''