aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/pytest-mypy/default.nix
blob: 2e1bd1b626d92cf711bcde4002b6676c00477020 (plain)
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 ];
  };
}