From mboxrd@z Thu Jan 1 00:00:00 1970 From: Muriithi Frederick Muriuki Subject: [PATCH 5/6] gnu: Add python-typing Date: Tue, 7 Feb 2017 21:00:40 +0300 Message-ID: <1486490441-3995-5-git-send-email-fredmanglis@gmail.com> References: <1486490441-3995-1-git-send-email-fredmanglis@gmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:52605) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cbA3W-0005zp-CK for guix-devel@gnu.org; Tue, 07 Feb 2017 12:59:55 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cbA3V-0005Rm-9V for guix-devel@gnu.org; Tue, 07 Feb 2017 12:59:54 -0500 Received: from mail-wm0-x235.google.com ([2a00:1450:400c:c09::235]:36532) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cbA3V-0005RR-3u for guix-devel@gnu.org; Tue, 07 Feb 2017 12:59:53 -0500 Received: by mail-wm0-x235.google.com with SMTP id c85so171731408wmi.1 for ; Tue, 07 Feb 2017 09:59:52 -0800 (PST) In-Reply-To: <1486490441-3995-1-git-send-email-fredmanglis@gmail.com> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org Cc: Muriithi Frederick Muriuki * gnu/packages/python.scm (python-typing): New variable. --- gnu/packages/python.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 170107a..ef3d9bd 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -12625,3 +12625,23 @@ faster ones are not available.") "This package provides efficient Python bindings to picosat on the C level, i.e. when importing pycosat, the picosat solver becomes part of the Python process itself") (license license:expat))) + +(define-public python-typing + (package + (name "python-typing") + (version "3.5.3.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "typing" version)) + (sha256 + (base32 + "08gz3grrh3vph5ib1w5x1ssnpzvj077x030lx63fxs4kwg3slbfa")))) + (build-system python-build-system) + (home-page + "https://docs.python.org/3.5/library/typing.html") + (synopsis "Type Hints for Python") + (description "This module supports type hints as specified by PEP 484. The most + fundamental support consists of the types Any, Union, Tuple, Callable, TypeVar, and + Generic. For full specification please see PEP 484") + (license license:psfl))) -- 2.1.4