diff options
| author | Ben Sima <ben@bensima.com> | 2026-05-18 14:16:48 -0400 |
|---|---|---|
| committer | Ben Sima <ben@bensima.com> | 2026-05-18 14:16:48 -0400 |
| commit | a23bb6136191dcdf20ccf9ca8769a83f35b18b45 (patch) | |
| tree | d9171f886d35fc409002ce26e425ddc14dda26ba | |
| parent | 2726dba7b41a2750a09889951ebbeecfdfe0981f (diff) | |
add shell.nix with zulip + yfinance
| -rw-r--r-- | shell.nix | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..6bacce2 --- /dev/null +++ b/shell.nix @@ -0,0 +1,15 @@ +{ pkgs ? import <nixpkgs> {} }: + +pkgs.mkShell { + buildInputs = [ + (pkgs.python3.withPackages (ps: [ + ps.zulip + ps.yfinance + ])) + ]; + + shellHook = '' + echo "slopbot dev shell ready" + echo "Run: python main.py" + ''; +} |
