docs/shells/default/default.nix

24 lines
338 B
Nix
Raw Normal View History

2024-06-30 05:43:43 +00:00
{ pkgs, ... }:
let
customPython = pkgs.python312.withPackages (ps: [
2024-07-24 17:29:20 +00:00
ps.cairosvg
ps.jq
2024-06-30 05:43:43 +00:00
ps.mkdocs
2024-07-24 17:29:20 +00:00
ps.mkdocs-material
2024-06-30 05:43:43 +00:00
ps.pillow
2024-07-24 17:29:20 +00:00
ps.rich
2024-06-30 05:43:43 +00:00
]);
in
pkgs.mkShell {
buildInputs = [
customPython
pkgs.deadnix
2024-07-24 17:29:20 +00:00
pkgs.jq
pkgs.nil
pkgs.nixd
2024-06-30 05:43:43 +00:00
pkgs.nixfmt-rfc-style
pkgs.statix
2024-07-24 17:29:20 +00:00
pkgs.ruff
2024-06-30 05:43:43 +00:00
];
}