guix-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH 5/6] gnu: Add python-typing


From: Muriithi Frederick Muriuki
Subject: [PATCH 5/6] gnu: Add python-typing
Date: Tue, 7 Feb 2017 21:00:40 +0300

* 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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]