util: add shell.nix

This commit is contained in:
Sweetbread 2025-04-07 22:36:29 +03:00
parent 474a6d5cb9
commit 18020f6854

11
shell.nix Normal file
View File

@ -0,0 +1,11 @@
{ pkgs ? import <nixpkgs> {} }:
with pkgs; mkShell rec {
buildInputs = [
(python3.withPackages (ps: with ps; [
flask
flask_assets
libsass
setuptools
]))
];
}