blob: bdda80f446b608834985ac495d8530e2e2dec0e3 (
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
47
|
{
lib,
attrs,
buildPythonPackage,
fetchPypi,
filelock,
pytest,
mypy,
setuptools,
setuptools-scm,
}:
buildPythonPackage rec {
pname = "pytest-mypy";
version = "1.0.1";
pyproject = true;
src = fetchPypi {
pname = "pytest_mypy";
inherit version;
hash = "sha256-P1/K/3XIDczGtoz17MKOG75x6VMJRp63oov0CM5VwHQ=";
};
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 ];
};
}
|