9 lines
169 B
Nix
9 lines
169 B
Nix
{ pkgs, ... }:
|
|
|
|
pkgs.devshell.mkShell {
|
|
name = "Financials";
|
|
packages = with pkgs; [
|
|
(python3.withPackages (ps: [ ps.requests ps.dateutil ]))
|
|
hledger
|
|
];
|
|
}
|