From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:53051) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hDVAt-0004Q3-KM for guix-patches@gnu.org; Mon, 08 Apr 2019 10:23:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hDVAs-0002Ew-DN for guix-patches@gnu.org; Mon, 08 Apr 2019 10:23:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:36524) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hDVAs-0002Ei-4Z for guix-patches@gnu.org; Mon, 08 Apr 2019 10:23:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hDVAr-0002Zn-VU for guix-patches@gnu.org; Mon, 08 Apr 2019 10:23:02 -0400 Subject: [bug#35193] [PATCH 2/3] Add python-mypy-extensions References: In-Reply-To: Resent-Message-ID: Date: Mon, 08 Apr 2019 14:21:53 +0000 From: JesseJohnGildersleve Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: JesseJohnGildersleve Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: "35193@debbugs.gnu.org" <35193@debbugs.gnu.org> >From e968e9787457781552fa229f6d1c5f15e473de1c Mon Sep 17 00:00:00 2001 From: frozenpigs Date: Mon, 8 Apr 2019 14:35:01 +0100 Subject: [PATCH 2/3] gnu: add python-mypy-extensions and python2-mypy-extensions --- gnu/packages/python-xyz.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index b5bfd6a261..27f1e1de08 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -15342,3 +15342,26 @@ under which they are run. The typed_ast parsers p= roduce the standard Python AST (plus type comments), and are both fast and correct, as they are based on = the CPython 2.7 and 3.6 parsers.") (license license:asl2.0))) + +(define-public python-mypy-extensions + (package + (name "python-mypy-extensions") + (version "0.4.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "mypy_extensions" version)) + (sha256 + (base32 + "04h8brrbbx151dfa2cvvlnxgmb5wa00mhd2z7nd20s8kyibfkq1p")))) + (build-system python-build-system) + (propagated-inputs + `(("python-typing" ,python-typing))) + (home-page "http://www.mypy-lang.org/") + (synopsis "Experimental type system extensions for programs checked wi= th mypy") + (description "The =E2=80=9Cmypy_extensions=E2=80=9D module defines exp= erimental extensions to the +standard =E2=80=9Ctyping=E2=80=9D module that are supported by the mypy ty= pechecker.") + (license license:expat))) + +(define-public python2-mypy-extensions + (package-with-python2 python-mypy-extensions)) -- 2.21.0