1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-14 11:59:11 +00:00
trezor-firmware/shell.nix
2019-02-04 16:48:54 +01:00

10 lines
257 B
Nix

with import <nixpkgs> {};
let
myPython = python3.withPackages(p: [p.click p.graphviz p.trezor p.ed25519 p.pillow]) ;
in
stdenv.mkDerivation {
name = "trezor-common-dev";
buildInputs = [ myPython python2Packages.demjson graphviz protobuf ];
}