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