10 buildPythonPackage rec {
11 pname = "pytest-mypy";
15 inherit pname version;
16 sha256 = "63d418a4fea7d598ac40b659723c00804d16a251d90a5cfbca213eeba5aaf01c";
19 nativeBuildInputs = [ setuptools_scm ];
21 buildInputs = [ pytest ];
23 propagatedBuildInputs = [ mypy filelock ];
25 # does not contain tests
27 pythonImportsCheck = [ "pytest_mypy" ];
30 description = "Mypy static type checker plugin for Pytest";
31 homepage = "https://github.com/dbader/pytest-mypy";
32 license = licenses.mit;
33 maintainers = [ maintainers.costrouc ];