From fdab9406e2e0b84e80d48cac39fa395c6215be9c Mon Sep 17 00:00:00 2001 From: Charlotte Van Petegem Date: Wed, 17 Jul 2024 09:58:57 +0200 Subject: [PATCH] shells: Add financials shell --- shells/financials.nix | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 shells/financials.nix diff --git a/shells/financials.nix b/shells/financials.nix new file mode 100644 index 00000000..aa594dc6 --- /dev/null +++ b/shells/financials.nix @@ -0,0 +1,8 @@ +{ pkgs, ... }: + +pkgs.devshell.mkShell { + name = "Financials"; + packages = with pkgs; [ + (python3.withPackages (ps: [ ps.requests ])) + ]; +}