Add py-typing-inspect 0.5.0

The typing_inspect module defines experimental API for runtime inspection of
types defined in the Python standard typing module. Works with typing version
3.7.4 and later.

WWW: https://github.com/ilevkivskyi/typing_inspect
This commit is contained in:
Sunpoet Po-Chuan Hsieh 2020-01-05 04:07:05 +00:00
parent b3aaad05fc
commit 6ff18c5d41
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=522087
4 changed files with 35 additions and 0 deletions

View file

@ -5130,6 +5130,7 @@
SUBDIR += py-typed-ast
SUBDIR += py-typing
SUBDIR += py-typing-extensions
SUBDIR += py-typing-inspect
SUBDIR += py-tzlocal
SUBDIR += py-u-msgpack-python
SUBDIR += py-ua_parser

View file

@ -0,0 +1,26 @@
# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
# $FreeBSD$
PORTNAME= typing-inspect
PORTVERSION= 0.5.0
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
DISTNAME= typing_inspect-${PORTVERSION}
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= Runtime inspection utilities for typing module
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}mypy_extensions>=0.3.0:devel/py-mypy_extensions@${PY_FLAVOR} \
${PY_TYPING} \
${PYTHON_PKGNAMEPREFIX}typing-extensions>=3.7.4:devel/py-typing-extensions@${PY_FLAVOR}
USES= python
USE_PYTHON= autoplist concurrent distutils
NO_ARCH= yes
.include <bsd.port.mk>

View file

@ -0,0 +1,3 @@
TIMESTAMP = 1578125677
SHA256 (typing_inspect-0.5.0.tar.gz) = 811b44f92e780b90cfe7bac94249a4fae87cfaa9b40312765489255045231d9c
SIZE (typing_inspect-0.5.0.tar.gz) = 8085

View file

@ -0,0 +1,5 @@
The typing_inspect module defines experimental API for runtime inspection of
types defined in the Python standard typing module. Works with typing version
3.7.4 and later.
WWW: https://github.com/ilevkivskyi/typing_inspect