blob: 81a5310ec78b9b8773e87917096704d45c1ffec1 (
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
setuptools-scm,
pytestCheckHook,
typing-extensions,
mypy,
sphinxHook,
sphinx-autodoc-typehints,
sphinx-rtd-theme,
glibcLocales,
}:
buildPythonPackage rec {
pname = "typeguard";
version = "4.4.4";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-On/S3/twXU0O+u1DBqcEyJud7oULaI8GCosWFaeeX3Q=";
};
outputs = [
"out"
"doc"
];
build-system = [
glibcLocales
setuptools
setuptools-scm
sphinxHook
sphinx-autodoc-typehints
sphinx-rtd-theme
];
dependencies = [
typing-extensions
];
env.LC_ALL = "en_US.utf-8";
nativeCheckInputs = [
mypy
pytestCheckHook
];
# To prevent test from writing out non-reproducible .pyc files
# https://github.com/agronholm/typeguard/blob/ca512c28132999da514f31b5e93ed2f294ca8f77/tests/test_typechecked.py#L641
preCheck = "export PYTHONDONTWRITEBYTECODE=1";
pythonImportsCheck = [ "typeguard" ];
meta = {
description = "This library provides run-time type checking for functions defined with argument type annotations";
homepage = "https://github.com/agronholm/typeguard";
changelog = "https://github.com/agronholm/typeguard/releases/tag/${version}";
license = lib.licenses.mit;
maintainers = [ ];
};
}
|