Newer
Older
python_redirect / shell.nix
@Jason Poage Jason Poage on 24 Mar 182 bytes First commit
{pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
  buildInputs = [
    (pkgs.python3.withPackages (ps:
      with ps; [
        fastapi
        uvicorn
        requests
      ]))
  ];
}