2024-11-03 15:40:20 -06:00

19 lines
271 B
Nix

{ pkgs ? import <nixpkgs> { } }:
with pkgs;
mkShell {
packages = [
geckodriver
(python3.withPackages (ps:
with ps; [
tweepy
requests
beautifulsoup4
selenium
webdriver-manager
]))
];
buildInputs = [ ];
}