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

10 lines
249 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";
buildInputs = [ myPython python27Packages.demjson graphviz ];
}