From: Tanguy Le Carrour <tanguy@bioneland.org>
To: 42465@debbugs.gnu.org
Cc: Tanguy Le Carrour <tanguy@bioneland.org>
Subject: [bug#42465] [PATCH v3 1/9] gnu: Add python-mypy-extensions.
Date: Mon, 27 Jul 2020 10:00:43 +0200 [thread overview]
Message-ID: <20200727080051.19383-1-tanguy@bioneland.org> (raw)
In-Reply-To: <20200721115515.5408-1-tanguy@bioneland.org>
* gnu/packages/python-check.scm (python-mypy-extensions): New variable.
---
gnu/packages/python-check.scm | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm
index e96ce9e666..facdf11f07 100644
--- a/gnu/packages/python-check.scm
+++ b/gnu/packages/python-check.scm
@@ -8,6 +8,7 @@
;;; Copyright © 2020 Marius Bakke <mbakke@fastmail.com>
;;; Copyright © 2020 Edouard Klein <edk@beaver-labs.com>
;;; Copyright © 2020 Vinicius Monego <monego@posteo.net>
+;;; Copyright © 2020 Tanguy Le Carrour <tanguy@bioneland.org>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -771,3 +772,23 @@ it, the declaration of a name's public export semantics are not separated from
the implementation of that name.")
(license (list license:asl2.0
license:lgpl3)))) ; only for setup_helpers.py
+
+(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)
+ (arguments `(#:tests? #f)); no tests
+ (home-page "https://github.com/python/mypy_extensions")
+ (synopsis "Experimental extensions for MyPy")
+ (description "The @code{python-mypy-extensions} module defines
+experimental extensions to the standard @code{typing} module that are
+supported by the MyPy typechecker.")
+ (license license:expat)))
--
2.27.0
next prev parent reply other threads:[~2020-07-27 8:02 UTC|newest]
Thread overview: 43+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-07-21 11:55 [bug#42465] [PATCH 00/10] gnu: Add python-mypy Tanguy Le Carrour
2020-07-21 11:56 ` [bug#42465] [PATCH 01/10] gnu: python-typing-extension: Update to 3.7.4.2 Tanguy Le Carrour
2020-07-21 11:56 ` [bug#42465] [PATCH 02/10] gnu: python-hypothesis: Update to 5.20.0 Tanguy Le Carrour
2020-07-25 15:52 ` Marius Bakke
2020-07-21 11:56 ` [bug#42465] [PATCH 03/10] gnu: Add python-mypy-extensions Tanguy Le Carrour
2020-07-25 15:55 ` Marius Bakke
2020-07-21 11:56 ` [bug#42465] [PATCH 04/10] gnu: Add python-typing-inspect Tanguy Le Carrour
2020-07-25 15:58 ` Marius Bakke
2020-07-21 11:56 ` [bug#42465] [PATCH 05/10] gnu: Add python-libcst Tanguy Le Carrour
2020-07-25 16:03 ` Marius Bakke
2020-07-21 11:56 ` [bug#42465] [PATCH 06/10] gnu: Add python-lark-parser Tanguy Le Carrour
2020-07-25 16:05 ` Marius Bakke
2020-07-21 11:56 ` [bug#42465] [PATCH 07/10] gnu: Add python-hypothesmith Tanguy Le Carrour
2020-07-25 16:09 ` Marius Bakke
2020-07-21 11:56 ` [bug#42465] [PATCH 08/10] gnu: Add python-flake8-bugbear Tanguy Le Carrour
2020-07-25 16:13 ` Marius Bakke
2020-07-21 11:56 ` [bug#42465] [PATCH 09/10] gnu: Add python-flake8-pyi Tanguy Le Carrour
2020-07-25 16:15 ` Marius Bakke
2020-07-21 11:56 ` [bug#42465] [PATCH 10/10] gnu: Add python-mypy Tanguy Le Carrour
2020-07-25 16:18 ` Marius Bakke
2020-07-27 7:57 ` Tanguy Le Carrour
2020-07-29 22:20 ` bug#42465: " Marius Bakke
2020-07-30 6:36 ` [bug#42465] " Tanguy Le Carrour
2020-07-25 15:47 ` [bug#42465] [PATCH 01/10] gnu: python-typing-extension: Update to 3.7.4.2 Marius Bakke
2020-07-22 12:09 ` [bug#42465] [PATCH v2 " Tanguy Le Carrour
2020-07-22 12:09 ` [bug#42465] [PATCH v2 02/10] gnu: python-hypothesis: Update to 5.20.0 Tanguy Le Carrour
2020-07-22 12:09 ` [bug#42465] [PATCH v2 03/10] gnu: Add python-mypy-extensions Tanguy Le Carrour
2020-07-22 12:09 ` [bug#42465] [PATCH v2 04/10] gnu: Add python-typing-inspect Tanguy Le Carrour
2020-07-22 12:09 ` [bug#42465] [PATCH v2 05/10] gnu: Add python-libcst Tanguy Le Carrour
2020-07-22 12:09 ` [bug#42465] [PATCH v2 06/10] gnu: Add python-lark-parser Tanguy Le Carrour
2020-07-22 12:09 ` [bug#42465] [PATCH v2 07/10] gnu: Add python-hypothesmith Tanguy Le Carrour
2020-07-22 12:09 ` [bug#42465] [PATCH v2 08/10] gnu: Add python-flake8-bugbear Tanguy Le Carrour
2020-07-22 12:09 ` [bug#42465] [PATCH v2 09/10] gnu: Add python-flake8-pyi Tanguy Le Carrour
2020-07-22 12:09 ` [bug#42465] [PATCH v2 10/10] gnu: Add python-mypy Tanguy Le Carrour
2020-07-27 8:00 ` Tanguy Le Carrour [this message]
2020-07-27 8:00 ` [bug#42465] [PATCH v3 2/9] gnu: Add python-typing-inspect Tanguy Le Carrour
2020-07-27 8:00 ` [bug#42465] [PATCH v3 3/9] gnu: Add python-hypothesis-5.23 Tanguy Le Carrour
2020-07-27 8:00 ` [bug#42465] [PATCH v3 4/9] gnu: Add python-libcst Tanguy Le Carrour
2020-07-27 8:00 ` [bug#42465] [PATCH v3 5/9] gnu: Add python-lark-parser Tanguy Le Carrour
2020-07-27 8:00 ` [bug#42465] [PATCH v3 6/9] gnu: Add python-hypothesmith Tanguy Le Carrour
2020-07-27 8:00 ` [bug#42465] [PATCH v3 7/9] gnu: Add python-flake8-bugbear Tanguy Le Carrour
2020-07-27 8:00 ` [bug#42465] [PATCH v3 8/9] gnu: Add python-flake8-pyi Tanguy Le Carrour
2020-07-27 8:00 ` [bug#42465] [PATCH v3 9/9] gnu: Add python-mypy Tanguy Le Carrour
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://guix.gnu.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200727080051.19383-1-tanguy@bioneland.org \
--to=tanguy@bioneland.org \
--cc=42465@debbugs.gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).