Add a nix-shell environment suitable for building

This enables easy execution of scripts/*.py by Nix users.

Signed-off-by: Benjamin Saunders <ben.e.saunders@gmail.com>
This commit is contained in:
Benjamin Saunders 2016-08-26 23:14:39 -07:00
parent 2fa7aac3be
commit 33d80408e0
2 changed files with 11 additions and 0 deletions

View file

@ -0,0 +1,6 @@
with import <nixpkgs> {};
(python.buildEnv.override {
extraLibs = with pythonPackages;
[ docutils pyyaml jinja2 pygments ];
}).env