From 0179875f61f71332bfaa52ed391703bdd2410e4c Mon Sep 17 00:00:00 2001 From: Crony Akatsuki Date: Sat, 9 Mar 2024 22:55:34 +0100 Subject: [PATCH] Add mypy. --- shell.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/shell.nix b/shell.nix index c19ac4d..8fdc1a2 100644 --- a/shell.nix +++ b/shell.nix @@ -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 = [