hydra-packet-importer: ignore untyped deps in mypy check
Not investing much time here, since we'll drop this after years end.
Martin Weinelt committed
Nov 23, 2024 at 17:36 UTC
aa683305eb0a28b598b6a145d523765db6548de6
1 file changed
+1
-1
hydra-packet-importer/default.nix
+1
-1
@@ -10,7 +10,7 @@ python3.pkgs.buildPythonApplication {
10
propagatedBuildInputs = [ python3.pkgs.packet-python ];
11
12
installPhase = ''
13
- mypy ./import.py
13
+ mypy --ignore-missing-imports ./import.py
14
mkdir -p $out/bin
15
mv import.py $out/bin/hydra-packet-importer
16
'';