From daa5082ca3ccfb835840acc6bac580546917d28f Mon Sep 17 00:00:00 2001 From: Mike Heier Date: Sun, 16 Jul 2023 15:36:39 -0400 Subject: [PATCH] add nix shell --- default.nix | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 default.nix diff --git a/default.nix b/default.nix new file mode 100644 index 00000000..bc0144a9 --- /dev/null +++ b/default.nix @@ -0,0 +1,14 @@ +{ pkgs ? import {} }: + pkgs.mkShell { + # nativeBuildInputs is usually what you want -- tools you need to run + nativeBuildInputs = with pkgs.buildPackages; [ + python3Packages.uvloop + python3Packages.click + python3Packages.uvicorn + python3Packages.httpx + python3Packages.loguru + python3Packages.pydantic + python3Packages.python-dotenv + poetry + ]; +} \ No newline at end of file