maps.chandlerswift.com/shell.nix

14 lines
295 B
Nix
Raw Normal View History

2024-09-02 13:59:45 -05:00
let
# nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-24.05";
pkgs = import <nixpkgs> { config = {}; overlays = []; };
in
pkgs.mkShellNoCC {
packages = with pkgs; [
2024-10-19 23:36:35 -05:00
python312
python312Packages.requests
python312Packages.beautifulsoup4
2024-09-02 13:59:45 -05:00
nodejs
];
}