diff options
author | Vagrant Cascadian <vagrant@debian.org> | 2019-02-05 04:14:23 +0000 |
---|---|---|
committer | Danny Milosavljevic <dannym@scratchpost.org> | 2019-02-10 20:37:10 +0100 |
commit | f89d443be198f6f6fbb8d7576120301269f99192 (patch) | |
tree | a6c7307ea89ffff5ec17fba911cc898fec2eb1c0 | |
parent | 02d9e5d285638c7a1e6c984a01588f8b5bb56c8c (diff) | |
download | patches-f89d443be198f6f6fbb8d7576120301269f99192.tar patches-f89d443be198f6f6fbb8d7576120301269f99192.tar.gz |
gnu: Add python-typing-extensions.
* gnu/packages/python-xyz.scm (python-typing-extensions): New variable.
-rw-r--r-- | gnu/packages/python-xyz.scm | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index f047a5c316..2a1575a77b 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -13433,6 +13433,43 @@ and other tools.") (define-public python2-typing (package-with-python2 python-typing)) +(define-public python-typing-extensions + (package + (name "python-typing-extensions") + (version "3.7.2") + (source + (origin + (method url-fetch) + (uri (pypi-uri "typing_extensions" version)) + (sha256 + (base32 + "0wfsv71pvkyf2na938l579jh0v3kzl6g744ijgnahcwd4d9x0b7v")))) + (build-system python-build-system) + (home-page + "https://github.com/python/typing/blob/master/typing_extensions/README.rst") + (synopsis "Experimental type hints for Python") + (description + "The typing_extensions module contains additional @code{typing} hints not +yet present in the of the @code{typing} standard library. +Included are implementations of: +@enumerate +@item ClassVar +@item ContextManager +@item Counter +@item DefaultDict +@item Deque +@item NewType +@item NoReturn +@item overload +@item Protocol +@item runtime +@item Text +@item Type +@item TYPE_CHECKING +@item AsyncGenerator +@end enumerate\n") + (license license:psfl))) + (define-public bpython (package (name "bpython") |