Files
google-cookie-retrieval/flake.nix
2025-02-17 11:05:45 -08:00

24 lines
575 B
Nix

{
description = "Development shell for google-cookie-retrieval";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
outputs = { self, nixpkgs }:
let
system = "x86_64-linux";
pkgs = import nixpkgs { inherit system; };
in {
devShells.${system}.default = pkgs.mkShell {
buildInputs = [
pkgs.python3
pkgs.python3Packages.selenium
pkgs.chromedriver
];
shellHook = ''
echo "Development shell with Python, Selenium, and Chromedriver loaded."
'';
};
};
}