13 buildPythonPackage rec {
14 pname = "pytest-mypy";
19 inherit pname version;
20 hash = "sha256-+EWPZCMj8Toso+LmFQn3dnlmtSe02K3M1QMsPntP09s=";
28 buildInputs = [ pytest ];
30 propagatedBuildInputs = [
36 # does not contain tests
38 pythonImportsCheck = [ "pytest_mypy" ];
41 description = "Mypy static type checker plugin for Pytest";
42 homepage = "https://github.com/dbader/pytest-mypy";
43 license = lib.licenses.mit;
44 maintainers = with lib.maintainers; [ sigmanificient ];