1{ lib
2, buildPythonPackage
3, fetchPypi
4, filelock
5, pytest
6, mypy
7, setuptools_scm
8}:
9
10buildPythonPackage rec {
11 pname = "pytest-mypy";
12 version = "0.6.2";
13
14 src = fetchPypi {
15 inherit pname version;
16 sha256 = "2560a9b27d59bb17810d12ec3402dfc7c8e100e40539a70d2814bcbb27240f27";
17 };
18
19 nativeBuildInputs = [ setuptools_scm ];
20 propagatedBuildInputs = [ pytest mypy filelock ];
21
22 meta = with lib; {
23 description = "Mypy static type checker plugin for Pytest";
24 homepage = "https://github.com/dbader/pytest-mypy";
25 license = licenses.mit;
26 maintainers = [ maintainers.costrouc ];
27 };
28}