Add websockets Python package to faf development environment

- Add websockets dependency to Python environment in flake.nix
- Required for WebSocket connections to Firefox tabs
This commit is contained in:
DannyDannyDanny 2026-02-01 15:03:43 +01:00
parent 2253bdde5d
commit d9eccc8cdb
2 changed files with 28 additions and 0 deletions

View file

@ -11,6 +11,7 @@
pkgs = import nixpkgs { inherit system; };
pythonEnv = pkgs.python3.withPackages (ps: with ps; [
lz4
websockets
]);
in
{