shell.nix 332 B

123456789101112131415
  1. # This file is for users of the Nix package manager (https://nixos.org)
  2. { pkgs ? import <nixpkgs> {} }:
  3. pkgs.mkShell {
  4. buildInputs = [
  5. pkgs.python38
  6. pkgs.python38Packages.tkinter
  7. pkgs.python38Packages.lark-parser
  8. pkgs.python38Packages.lxml
  9. pkgs.python38Packages.termcolor
  10. ];
  11. PYTHONPATH = ./. + "/src";
  12. }