blob: ce03e47d7614e86194c44d1791b2d9f42d75a8e8 (
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
30
31
32
33
34
35
36
37
38
39
40
41
|
{
lib,
buildPythonPackage,
fetchPypi,
typing-extensions,
mypy-extensions,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "typing-inspect";
version = "0.9.0";
format = "setuptools";
src = fetchPypi {
inherit version;
pname = "typing_inspect";
hash = "sha256-sj/EL/b272lU5IUsH7USzdGNvqAxNPkfhWqVzMlGH3g=";
};
propagatedBuildInputs = [
typing-extensions
mypy-extensions
];
nativeCheckInputs = [ pytestCheckHook ];
disabledTests = [
# https://github.com/ilevkivskyi/typing_inspect/issues/84
"test_typed_dict_typing_extension"
];
pythonImportsCheck = [ "typing_inspect" ];
meta = with lib; {
description = "Runtime inspection utilities for Python typing module";
homepage = "https://github.com/ilevkivskyi/typing_inspect";
license = licenses.mit;
maintainers = with maintainers; [ albakham ];
};
}
|