mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-26 09:28:13 +00:00
nix: add shell.nix
This commit is contained in:
parent
00ebbbb1f3
commit
4f18d53219
9
shell.nix
Normal file
9
shell.nix
Normal file
@ -0,0 +1,9 @@
|
||||
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 ];
|
||||
}
|
Loading…
Reference in New Issue
Block a user