summary refs log tree commit diff stats
path: root/mailinglist/shell.nix
blob: fcca0cfd3efc58691f6885c291da6932bd0098a9 (plain) (blame)
1
2
3
4
5
6
7
8
9
{ pkgs ? (import <nixpkgs> {}).pkgs }:
with pkgs;
mkShell {
  buildInputs = [
    python312Packages.html5lib
    python312Packages.beautifulsoup4
    python312Packages.requests
  ];
}