1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-13 11:29:11 +00:00
trezor-firmware/shell.nix

10 lines
250 B
Nix
Raw Normal View History

2018-10-19 16:02:40 +00:00
with import <nixpkgs> {};
let
myPython = python36.withPackages(p: [p.click p.graphviz p.trezor p.ed25519 p.pillow]) ;
in
stdenv.mkDerivation {
name = "trezor-common-dev";
buildInputs = [ myPython python27Packages.demjson graphviz ];
}