mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-15 20:19:23 +00:00
10 lines
250 B
Nix
10 lines
250 B
Nix
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 ];
|
|
}
|