From 4f18d53219425738c06d47f331e8b72dac07af9d Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Mon, 8 Oct 2018 15:56:16 +0200 Subject: [PATCH] nix: add shell.nix --- shell.nix | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000000..64077107af --- /dev/null +++ b/shell.nix @@ -0,0 +1,9 @@ +with import {}; + +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 ]; + }