1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-14 11:59:11 +00:00
trezor-firmware/shell.nix
2018-10-08 15:56:16 +02:00

10 lines
290 B
Nix

with import <nixpkgs> {};
let
myPython = python36.withPackages(p: [p.pytest p.black p.isort p.requests p.mnemonic p.construct p.pyblake2 p.mock p.ecdsa p.click p.libusb1]);
in
stdenv.mkDerivation {
name = "python-trezor-dev";
buildInputs = [ myPython autoflake protobuf ];
}