depot/web/quotes/shell.nix

12 lines
177 B
Nix

{ depot ? import <depot> {} }:
let
inherit (depot.web) quotes;
inherit (depot) pkgs;
in pkgs.mkShell {
buildInputs = with pkgs; [
quotes.pythonEnv
black
];
}