1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-13 19:18:56 +00:00

nix: use python3, not python36

This commit is contained in:
Pavol Rusnak 2019-01-29 02:14:34 +01:00
parent 1f61f82f63
commit 75e65bbb2d
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(ps: [ps.trezor ps.pytest ps.flake8 ps.isort ps.black ps.Mako ps.munch ps.Pyro4]);
myPython = python3.withPackages(ps: [ps.trezor ps.pytest ps.flake8 ps.isort ps.black ps.Mako ps.munch ps.Pyro4]);
in
stdenv.mkDerivation {
name = "trezor-core-dev";