From 8cabc077db6cf0e7c66e538d651cfd18e884e021 Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Fri, 19 Oct 2018 18:02:40 +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 000000000..784b04291 --- /dev/null +++ b/shell.nix @@ -0,0 +1,9 @@ +with import {}; + +let + myPython = python36.withPackages(p: [p.click p.graphviz p.trezor p.ed25519 p.pillow]) ; +in + stdenv.mkDerivation { + name = "trezor-common-dev"; + buildInputs = [ myPython python27Packages.demjson graphviz ]; + }