depot/py/icalfilter/shell.nix

14 lines
207 B
Nix
Raw Normal View History

2022-05-16 00:48:48 +00:00
{ depot ? import <depot> {} }:
let
inherit (depot.py) icalfilter;
inherit (depot) pkgs;
in pkgs.mkShell {
buildInputs = with pkgs; [
icalfilter.pythonEnv
black
python3.pkgs.isort
];
}