depot/web/quotes/shell.nix

14 lines
188 B
Nix
Raw Normal View History

2021-01-19 03:51:22 +00:00
{ depot ? import <depot> {} }:
let
inherit (depot.web) quotes;
inherit (depot) pkgs;
in pkgs.mkShell {
buildInputs = with pkgs; [
quotes.pythonEnv
2021-01-20 02:04:30 +00:00
nodejs
2021-01-19 03:51:22 +00:00
black
];
}