summary refs log tree commit diff
path: root/pkgs/development/python-modules/pytest-mypy/default.nix
blob: 4fb2146d7a74d856a43d6b1ac62dca322782b1c4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib
, buildPythonPackage
, fetchPypi
, pytest
, mypy
}:

buildPythonPackage rec {
  pname = "pytest-mypy";
  version = "0.4.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "5a5338cecff17f005b181546a13e282761754b481225df37f33d37f86ac5b304";
  };

  propagatedBuildInputs = [ pytest mypy ];

  meta = with lib; {
    description = "Mypy static type checker plugin for Pytest";
    homepage = https://github.com/dbader/pytest-mypy;
    license = licenses.mit;
    maintainers = [ maintainers.costrouc ];
  };
}