From 0d8cc86a60f95eb3b00e5cea6bbfe6df396dfa32 Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Mon, 1 Oct 2018 11:51:48 +0200 Subject: [PATCH] nix: add pytest to nix-shell --- shell.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell.nix b/shell.nix index 7b90dc9c2..61f057876 100644 --- a/shell.nix +++ b/shell.nix @@ -1,7 +1,7 @@ with import {}; let - myPython = python36.withPackages(p: [p.trezor]); + myPython = python36.withPackages(ps: [ps.trezor ps.pytest]); in stdenv.mkDerivation { name = "trezor-core-dev";