14 lines
205 B
Nix
14 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
|
||
|
];
|
||
|
}
|