15 lines
No EOL
278 B
Nix
15 lines
No EOL
278 B
Nix
# Generates a shell from where all the dependencies can be found.
|
|
|
|
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
let
|
|
SOURCE_DIR = builtins.toString ./src;
|
|
in
|
|
pkgs.mkShell {
|
|
buildInputs = [
|
|
pkgs.python3
|
|
pkgs.python3Packages.jinja2
|
|
];
|
|
|
|
PYTHONPATH = SOURCE_DIR;
|
|
} |