Files
to-hen/kevin/shell.nix
Kierán Meinhardt 4841268882 chore: import kevin
2020-10-17 22:07:51 +02:00

11 lines
239 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
pandoc
python3Packages.beautifulsoup4
python3Packages.requests
python3Packages.lxml
];
shellHook = "export HISTFILE=${toString ./.history}";
}