let
  pkgs = import <nixpkgs> {};
in

pkgs.mkShellNoCC {
  packages = with pkgs; [
    gdal
    python3
    python311Packages.requests
  ];
}