depot/py/icalfilter/shell.nix

13 lines
207 B
Nix

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