changes before turning into a flake

This commit is contained in:
2024-10-31 23:43:37 -06:00
parent cf627acdb0
commit bd50a7ce71
77 changed files with 252 additions and 131 deletions

View File

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