mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-17 05:03:07 +00:00
10 lines
257 B
Nix
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 ];
|
|
}
|