1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-13 03:19:05 +00:00
trezor-firmware/common/shell.nix

10 lines
257 B
Nix
Raw Normal View History

2018-10-19 16:02:40 +00:00
with import <nixpkgs> {};
let
2019-01-29 01:09:07 +00:00
myPython = python3.withPackages(p: [p.click p.graphviz p.trezor p.ed25519 p.pillow]) ;
2018-10-19 16:02:40 +00:00
in
stdenv.mkDerivation {
name = "trezor-common-dev";
2019-02-04 15:48:54 +00:00
buildInputs = [ myPython python2Packages.demjson graphviz protobuf ];
2018-10-19 16:02:40 +00:00
}