summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--flake.nix10
1 files changed, 9 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index de14c18..b3b38fa 100644
--- a/flake.nix
+++ b/flake.nix
@@ -15,7 +15,15 @@
pkgs = nixpkgs.legacyPackages.${system};
in
{
- devShells.default = pkgs.mkShellNoCC { packages = [ (pkgs.python3.withPackages (p: [ p.requests p.mwclient p.lxml ])) ]; };
+ devShells = {
+ default = pkgs.mkShellNoCC {
+ packages = (with pkgs; [
+ (python3.withPackages (p: [ p.requests p.mwclient p.lxml ]))
+ websocat
+ jq
+ ]);
+ };
+ };
}
);
}