about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pytest-mypy-plugins/default.nix
blob: 38b2168e13fdc73cf75aebc400604ba6cbe666b8 (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
26
27
28
29
{ lib
, buildPythonPackage
, fetchFromGitHub
, chevron
, pyyaml
, mypy
, pytest
, decorator
, regex
}:

buildPythonPackage rec {
  pname = "pytest-mypy-plugins";
  version = "1.9.2";
  src = fetchFromGitHub {
    owner = "typeddjango";
    repo = pname;
    rev = version;
    sha256 = "sha256-Me5P4Q2M+gGEWlUVgQ0L048rVUOlUzVMgZZcqZPeE4Q=";
  };
  propagatedBuildInputs = [ chevron pyyaml mypy pytest decorator regex ];

  meta = with lib; {
    description = "pytest plugin for testing mypy types, stubs, and plugins";
    homepage = "https://github.com/TypedDjango/pytest-mypy-plugins";
    license = licenses.mit;
    maintainers = with maintainers; [ SomeoneSerge ];
  };
}