summaryrefslogtreecommitdiff
path: root/shell.nix
diff options
context:
space:
mode:
authorBen Sima <ben@bensima.com>2026-05-18 14:16:48 -0400
committerBen Sima <ben@bensima.com>2026-05-18 14:16:48 -0400
commita23bb6136191dcdf20ccf9ca8769a83f35b18b45 (patch)
treed9171f886d35fc409002ce26e425ddc14dda26ba /shell.nix
parent2726dba7b41a2750a09889951ebbeecfdfe0981f (diff)
add shell.nix with zulip + yfinance
Diffstat (limited to 'shell.nix')
-rw-r--r--shell.nix15
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"
+ '';
+}