From 18020f68543974174cd64933eebd98c162b26e13 Mon Sep 17 00:00:00 2001 From: Sweetbread Date: Mon, 7 Apr 2025 22:36:29 +0300 Subject: [PATCH] util: add shell.nix --- shell.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..7b6012d --- /dev/null +++ b/shell.nix @@ -0,0 +1,11 @@ +{ pkgs ? import {} }: +with pkgs; mkShell rec { + buildInputs = [ + (python3.withPackages (ps: with ps; [ + flask + flask_assets + libsass + setuptools + ])) + ]; +}