13 lines
177 B
Nix
13 lines
177 B
Nix
|
{ depot ? import <depot> {} }:
|
||
|
|
||
|
let
|
||
|
inherit (depot.web) quotes;
|
||
|
inherit (depot) pkgs;
|
||
|
in pkgs.mkShell {
|
||
|
buildInputs = with pkgs; [
|
||
|
quotes.pythonEnv
|
||
|
|
||
|
black
|
||
|
];
|
||
|
}
|