1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-22 07:28:10 +00:00

nix: add pytest to nix-shell

This commit is contained in:
Pavol Rusnak 2018-10-01 11:51:48 +02:00
parent df665b70d3
commit 0d8cc86a60
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

View File

@ -1,7 +1,7 @@
with import <nixpkgs> {};
let
myPython = python36.withPackages(p: [p.trezor]);
myPython = python36.withPackages(ps: [ps.trezor ps.pytest]);
in
stdenv.mkDerivation {
name = "trezor-core-dev";