From ee25c4a6f4d8e36770b4bc2d6b962076547260aa Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Tue, 29 Jan 2019 02:09:07 +0100 Subject: [PATCH] nix: use python3, not python36 --- shell.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell.nix b/shell.nix index 784b04291..fc4e99268 100644 --- a/shell.nix +++ b/shell.nix @@ -1,7 +1,7 @@ with import {}; let - myPython = python36.withPackages(p: [p.click p.graphviz p.trezor p.ed25519 p.pillow]) ; + myPython = python3.withPackages(p: [p.click p.graphviz p.trezor p.ed25519 p.pillow]) ; in stdenv.mkDerivation { name = "trezor-common-dev";