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

10 lines
310 B
Nix
Raw Normal View History

2018-10-08 13:56:16 +00:00
with import <nixpkgs> {};
let
2018-10-22 13:41:27 +00:00
myPython = python36.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]);
2018-10-08 13:56:16 +00:00
in
stdenv.mkDerivation {
name = "python-trezor-dev";
buildInputs = [ myPython autoflake protobuf ];
}