# shell.nix let # We pin to a specific nixpkgs commit for reproducibility. # Last updated: 2025-03-03. Check for new commits at https://status.nixos.org. pkgs = import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/b58e19b11fe72175fd7a9e014a4786a91e99da5f.tar.gz") {}; in pkgs.mkShell { packages = [ (pkgs.python3.withPackages (python-pkgs: with python-pkgs; [ beautifulsoup4 cryptography ffmpeg-python graphviz matplotlib numpy pandas psycopg2 pyx requests scapy scrapy ])) ]; }