Add mypy.

This commit is contained in:
CronyAkatsuki 2024-03-09 22:55:34 +01:00
parent 06dcf34160
commit 0179875f61

View File

@ -3,8 +3,9 @@
pkgs.mkShell { pkgs.mkShell {
name = "hb-downloader"; name = "hb-downloader";
buildInputs = [ buildInputs = [
(pkgs.python3.withPackages ( pyPkgs: [ (pkgs.python3.withPackages ( pyPkgs: with pyPkgs; [
pyPkgs.requests requests
mypy
])) ]))
]; ];
nativeBuildInputs = [ nativeBuildInputs = [