From 1cd0a8c0fba1a19c516afb4917642356f7172d95 Mon Sep 17 00:00:00 2001 From: Lukas Kucharczyk Date: Thu, 8 Aug 2024 09:27:51 +0200 Subject: [PATCH] add shell.nix --- shell.nix | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..7423b46 --- /dev/null +++ b/shell.nix @@ -0,0 +1,14 @@ +{ + pkgs ? import { }, +}: + +pkgs.mkShell { + buildInputs = with pkgs; [ + nodejs + (poetry.override { python3 = python312; }) + ]; + + shellHook = '' + poetry install + ''; +}