blob: 6b83a3854c747d752769ed26e69efd358e2b6414 (
about) (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
{
lib,
attrs,
buildPythonPackage,
fetchPypi,
filelock,
pytest,
mypy,
setuptools,
setuptools-scm,
}:
buildPythonPackage rec {
pname = "pytest-mypy";
version = "0.10.3";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-+EWPZCMj8Toso+LmFQn3dnlmtSe02K3M1QMsPntP09s=";
};
nativeBuildInputs = [
setuptools
setuptools-scm
];
buildInputs = [ pytest ];
propagatedBuildInputs = [
attrs
mypy
filelock
];
# does not contain tests
doCheck = false;
pythonImportsCheck = [ "pytest_mypy" ];
meta = {
description = "Mypy static type checker plugin for Pytest";
homepage = "https://github.com/dbader/pytest-mypy";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ sigmanificient ];
};
}
|