This enables easy execution of scripts/*.py by Nix users. Signed-off-by: Benjamin Saunders <ben.e.saunders@gmail.com>
6 lines
138 B
Nix
6 lines
138 B
Nix
with import <nixpkgs> {};
|
|
|
|
(python.buildEnv.override {
|
|
extraLibs = with pythonPackages;
|
|
[ docutils pyyaml jinja2 pygments ];
|
|
}).env
|