From patchwork Wed Jul 22 12:09:33 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tanguy LE CARROUR X-Patchwork-Id: 23312 Return-Path: X-Original-To: patchwork@mira.cbaines.net Delivered-To: patchwork@mira.cbaines.net Received: by mira.cbaines.net (Postfix, from userid 113) id D95E227BBE4; Wed, 22 Jul 2020 13:16:33 +0100 (BST) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on mira.cbaines.net X-Spam-Level: X-Spam-Status: No, score=-2.9 required=5.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_MSPIKE_H4,RCVD_IN_MSPIKE_WL,URIBL_BLOCKED autolearn=unavailable autolearn_force=no version=3.4.2 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) by mira.cbaines.net (Postfix) with ESMTP id 8A13027BBE3 for ; Wed, 22 Jul 2020 13:16:33 +0100 (BST) Received: from localhost ([::1]:46964 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jyDfl-00085b-1h for patchwork@mira.cbaines.net; Wed, 22 Jul 2020 08:16:33 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:45416) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jyDaR-00082y-GG for guix-patches@gnu.org; Wed, 22 Jul 2020 08:11:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:58145) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1jyDaR-0006w1-5K for guix-patches@gnu.org; Wed, 22 Jul 2020 08:11:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jyDaR-0006uX-0h for guix-patches@gnu.org; Wed, 22 Jul 2020 08:11:03 -0400 X-Loop: help-debbugs@gnu.org Subject: [bug#42465] [PATCH v2 04/10] gnu: Add python-typing-inspect. Resent-From: Tanguy Le Carrour Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Wed, 22 Jul 2020 12:11:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 42465 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 42465@debbugs.gnu.org Cc: Tanguy Le Carrour Received: via spool by 42465-submit@debbugs.gnu.org id=B42465.159541981026401 (code B ref 42465); Wed, 22 Jul 2020 12:11:02 +0000 Received: (at 42465) by debbugs.gnu.org; 22 Jul 2020 12:10:10 +0000 Received: from localhost ([127.0.0.1]:41436 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jyDZZ-0006rk-So for submit@debbugs.gnu.org; Wed, 22 Jul 2020 08:10:10 -0400 Received: from relay5-d.mail.gandi.net ([217.70.183.197]:58397) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jyDZY-0006r7-4e for 42465@debbugs.gnu.org; Wed, 22 Jul 2020 08:10:08 -0400 X-Originating-IP: 176.185.184.238 Received: from localhost.localdomain (static-176-185-184-238.axione.abo.bbox.fr [176.185.184.238]) (Authenticated sender: tanguy@bioneland.org) by relay5-d.mail.gandi.net (Postfix) with ESMTPSA id 76B291C0015; Wed, 22 Jul 2020 12:10:02 +0000 (UTC) From: Tanguy Le Carrour Date: Wed, 22 Jul 2020 14:09:33 +0200 Message-Id: <20200722120940.13811-4-tanguy@bioneland.org> X-Mailer: git-send-email 2.27.0 In-Reply-To: <20200722120940.13811-1-tanguy@bioneland.org> References: <20200722120940.13811-1-tanguy@bioneland.org> MIME-Version: 1.0 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list X-BeenThere: guix-patches@gnu.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+patchwork=mira.cbaines.net@gnu.org Sender: "Guix-patches" X-getmail-retrieved-from-mailbox: Patches * 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 54bbef42e4..6fa1044fdc 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -12297,6 +12297,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")