depot/web/quotes/shell.nix

13 lines
177 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
black
];
}