From 1accbf65cac1c9124d7f42c2760e8996949f7802 Mon Sep 17 00:00:00 2001 From: LGUG2Z Date: Fri, 10 May 2024 14:37:44 -0700 Subject: [PATCH] docs(mkdocs): add shell.nix for python doc deps --- 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 00000000..a826362a --- /dev/null +++ b/shell.nix @@ -0,0 +1,11 @@ +{pkgs ? import {}}: +with pkgs; + mkShell { + name = "komorebi"; + + buildInputs = [ + python311Packages.mkdocs-material + python311Packages.mkdocs-macros + python311Packages.setuptools + ]; + }