This repository has been archived on 2025-11-28. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
cloudflare-dns-docker-old/shell.nix
2025-11-27 17:31:29 +01:00

18 lines
321 B
Nix

with import <nixpkgs> {};
mkShell {
buildInputs = [
python311
python311Packages.pip
];
shellHook = ''
echo "Setting up Python 3.11 virtualenv..."
python3.11 -m venv .venv
source .venv/bin/activate
pip install --upgrade pip
pip install cloudflare docker requests python-dotenv
'';
}