depot/py/tumblrcap/shell.nix

13 lines
205 B
Nix

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