20 lines
338 B
Nix
20 lines
338 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
|
|
with pkgs;
|
|
pkgs.mkShell {
|
|
nativeBuildInputs = [
|
|
inlyne # markdown viewer
|
|
|
|
# Python development environment
|
|
(python3.withPackages(ps: with ps; [
|
|
# For SDK configuration
|
|
python-dotenv
|
|
|
|
# HTTP client
|
|
requests
|
|
]))
|
|
];
|
|
}
|
|
|