blob: fb8093538ae0828fa40354e1d05c2cb419cdd2fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = [
pkgs.gnumake
pkgs.python312 # Specify the Python version (adjust if needed)
pkgs.python312Packages.flask
pkgs.python312Packages.pyyaml
pkgs.python312Packages.markdown
pkgs.python312Packages.python-telegram-bot
pkgs.python312Packages.pygments
pkgs.python312Packages.tabulate # Format lists as ascii tables for comments
pkgs.sqlite # Database for comments
];
shellHook = ''
# Runs when starting shell
'';
}
|