hydra-check: include types for mypy

main
superherointj 3 years ago committed by Sandro Jäckel
parent 08e86542c4
commit 8401031f6b
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5
  1. 8
      pkgs/development/python-modules/hydra-check/default.nix

@ -6,6 +6,7 @@
, requests
, beautifulsoup4
, mypy
, types-requests
}:
buildPythonPackage rec {
@ -26,14 +27,17 @@ buildPythonPackage rec {
beautifulsoup4
];
checkInputs = [ mypy ];
checkInputs = [
mypy
types-requests
];
checkPhase = ''
echo -e "\x1b[32m## run mypy\x1b[0m"
mypy hydracheck
'';
meta = with lib;{
meta = with lib; {
description = "check hydra for the build status of a package";
homepage = "https://github.com/nix-community/hydra-check";
license = licenses.mit;

Loading…
Cancel
Save