ADDED markdown viewer and python-dotenv to shell

This commit is contained in:
Andrew Bryant 2024-02-10 11:04:52 -05:00
parent 79b4dfd4eb
commit a9b38d8515

View File

@ -4,8 +4,14 @@
with pkgs; with pkgs;
pkgs.mkShell { pkgs.mkShell {
nativeBuildInputs = [ nativeBuildInputs = [
inlyne # markdown viewer
# Python development environment # Python development environment
(python3.withPackages(ps: with ps; [ (python3.withPackages(ps: with ps; [
# For SDK configuration
python-dotenv
# HTTP client
requests requests
])) ]))
]; ];