From c835de22832e8c7fb33cf6eec1aa0afb029253ca Mon Sep 17 00:00:00 2001 From: Giacomo Leidi Date: Tue, 9 Jun 2020 19:06:02 +0200 Subject: [PATCH 04/10] gnu: Add python-mypy-extensions. * gnu/packages/python-xyz.scm (python-mypy-extensions): New variable. --- gnu/packages/python-xyz.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 77b7222959..6f13c730bd 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -22711,3 +22711,25 @@ applications with variable CPU loads).") (description "@code{python-aiofiles} is a library for handling local disk files in asyncio applications.") (license license:asl2.0))) + +(define-public python-mypy-extensions + (package + (name "python-mypy-extensions") + (version "0.4.3") + (source + (origin + (method url-fetch) + (uri (pypi-uri "mypy-extensions" version)) + (sha256 + (base32 + "1a04qsk8hd1lqns8w1j7cr0vmvbhg450di5k1i16kqxkbf7q30id")))) + (build-system python-build-system) + (home-page + "https://github.com/python/mypy_extensions") + (synopsis + "Experimental type system extensions for mypy") + (description + "@code{python-mypy-extensions} defines experimental extensions +to the standard @code{typing} module that are supported by the +@code{mypy} typechecker.") + (license license:expat))) -- 2.26.2