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 {
name = "hb-downloader";
buildInputs = [
(pkgs.python3.withPackages ( pyPkgs: [
pyPkgs.requests
(pkgs.python3.withPackages ( pyPkgs: with pyPkgs; [
requests
mypy
]))
];
nativeBuildInputs = [