summaryrefslogtreecommitdiff
path: root/nix/server.nix
blob: 18e4673f2e553b8913be8cef734badd3fd5e3da6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{
  writeShellApplication,
  python311,
  guzzle-api,
  ...
}:
writeShellApplication {
  name = "guzzle-api-server";
  runtimeInputs = [(python311.withPackages (p: [p.uvicorn guzzle-api]))];
  text = ''
    uvicorn guzzle_api.api:app "$@"
  '';
}