docs(mkdocs): add shell.nix for python doc deps

This commit is contained in:
LGUG2Z
2024-05-10 14:37:44 -07:00
committed by جاد
parent 7ee3c928d8
commit 1accbf65ca

11
shell.nix Normal file
View File

@@ -0,0 +1,11 @@
{pkgs ? import <nixpkgs> {}}:
with pkgs;
mkShell {
name = "komorebi";
buildInputs = [
python311Packages.mkdocs-material
python311Packages.mkdocs-macros
python311Packages.setuptools
];
}