From a23bb6136191dcdf20ccf9ca8769a83f35b18b45 Mon Sep 17 00:00:00 2001 From: Ben Sima Date: Mon, 18 May 2026 14:16:48 -0400 Subject: add shell.nix with zulip + yfinance --- shell.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 shell.nix 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 {} }: + +pkgs.mkShell { + buildInputs = [ + (pkgs.python3.withPackages (ps: [ + ps.zulip + ps.yfinance + ])) + ]; + + shellHook = '' + echo "slopbot dev shell ready" + echo "Run: python main.py" + ''; +} -- cgit v1.2.3