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