[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#42465] [PATCH 04/10] gnu: Add python-typing-inspect.
From: |
Tanguy Le Carrour |
Subject: |
[bug#42465] [PATCH 04/10] gnu: Add python-typing-inspect. |
Date: |
Tue, 21 Jul 2020 13:56:27 +0200 |
* gnu/packages/python-xyz.scm (python-typing-inspect): New variable.
---
gnu/packages/python-xyz.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 893506b5c3..2293a16ecc 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -12274,6 +12274,30 @@ in Python. It allows you to declare the libraries
your project depends on and
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
+ "Defines experimental API for runtime inspection of types defined in the
Python
+standard typing module")
+ (description
+ "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.")
+ (license license:expat)))
+
(define-public python-lazy-object-proxy
(package
(name "python-lazy-object-proxy")
--
2.27.0
- [bug#42465] [PATCH 00/10] gnu: Add python-mypy., Tanguy Le Carrour, 2020/07/21
- [bug#42465] [PATCH 01/10] gnu: python-typing-extension: Update to 3.7.4.2., Tanguy Le Carrour, 2020/07/21
- [bug#42465] [PATCH 02/10] gnu: python-hypothesis: Update to 5.20.0., Tanguy Le Carrour, 2020/07/21
- [bug#42465] [PATCH 03/10] gnu: Add python-mypy-extensions., Tanguy Le Carrour, 2020/07/21
- [bug#42465] [PATCH 04/10] gnu: Add python-typing-inspect.,
Tanguy Le Carrour <=
- [bug#42465] [PATCH 05/10] gnu: Add python-libcst., Tanguy Le Carrour, 2020/07/21
- [bug#42465] [PATCH 06/10] gnu: Add python-lark-parser., Tanguy Le Carrour, 2020/07/21
- [bug#42465] [PATCH 09/10] gnu: Add python-flake8-pyi., Tanguy Le Carrour, 2020/07/21
- [bug#42465] [PATCH 10/10] gnu: Add python-mypy., Tanguy Le Carrour, 2020/07/21