1{ lib
2, buildPythonPackage
3, fetchPypi
4, typing-extensions
5, mypy-extensions
6}:
7
8buildPythonPackage rec {
9 pname = "typing-inspect";
10 version = "0.6.0";
11
12 src = fetchPypi {
13 inherit version;
14 pname = "typing_inspect";
15 sha256 = "1dzs9a1pr23dhbvmnvms2jv7l7jk26023g5ysf0zvnq8b791s6wg";
16 };
17
18 propagatedBuildInputs = [
19 typing-extensions
20 mypy-extensions
21 ];
22
23 meta = with lib; {
24 description = "Runtime inspection utilities for Python typing module";
25 homepage = "https://github.com/ilevkivskyi/typing_inspect";
26 license = licenses.mit;
27 maintainers = with maintainers; [ albakham ];
28 };
29}