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

10 lines
329 B
Nix
Raw Normal View History

2018-10-08 13:56:16 +00:00
with import <nixpkgs> {};
let
2019-01-29 01:11:48 +00:00
myPython = python3.withPackages(p: [p.pytest p.black p.isort p.flake8 p.requests p.mnemonic p.construct p.pyblake2 p.mock p.ecdsa p.click p.libusb1 p.protobuf p.typing-extensions]);
2018-10-08 13:56:16 +00:00
in
stdenv.mkDerivation {
name = "python-trezor-dev";
buildInputs = [ myPython autoflake protobuf ];
}