shells: Add financials shell

This commit is contained in:
Charlotte Van Petegem 2024-07-17 09:58:57 +02:00
parent cd36b6f04c
commit fdab9406e2

8
shells/financials.nix Normal file
View file

@ -0,0 +1,8 @@
{ pkgs, ... }:
pkgs.devshell.mkShell {
name = "Financials";
packages = with pkgs; [
(python3.withPackages (ps: [ ps.requests ]))
];
}