mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-16 19:57:39 -05:00
gnu: Add python-typing-inspect.
* gnu/packages/python-xyz.scm (python-typing-inspect): New variable. Signed-off-by: Marius Bakke <marius@gnu.org>
This commit is contained in:
parent
f755bb0189
commit
97554fb9ab
1 changed files with 21 additions and 0 deletions
|
@ -12341,6 +12341,27 @@ (define-public poetry
|
|||
it will manage (install/update) them for you.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public python-typing-inspect
|
||||
(package
|
||||
(name "python-typing-inspect")
|
||||
(version "0.6.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "typing_inspect" version))
|
||||
(sha256
|
||||
(base32
|
||||
"1dzs9a1pr23dhbvmnvms2jv7l7jk26023g5ysf0zvnq8b791s6wg"))))
|
||||
(build-system python-build-system)
|
||||
(propagated-inputs
|
||||
`(("python-mypy-extensions" ,python-mypy-extensions)
|
||||
("python-typing-extensions" ,python-typing-extensions)))
|
||||
(home-page "https://github.com/ilevkivskyi/typing_inspect")
|
||||
(synopsis "API for inspection of types in the Python @code{typing} module")
|
||||
(description
|
||||
"The @code{typing_inspect} module defines experimental API for runtime
|
||||
inspection of types defined in the Python standard typing module.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public python-lazy-object-proxy
|
||||
(package
|
||||
(name "python-lazy-object-proxy")
|
||||
|
|
Loading…
Reference in a new issue