depot/py/valveindexinstock/shell.nix

13 lines
198 B
Nix
Raw Normal View History

2021-02-22 21:31:23 +00:00
{ depot ? import <depot> {} }:
let
inherit (depot.py) valveindexinstock;
inherit (depot) pkgs;
in pkgs.mkShell {
buildInputs = with pkgs; [
valveindexinstock.pythonEnv
black
];
}