GNU bug report logs - #41807
[PATCHES] Add python-sanic and dependencies.

Previous Next

Package: guix-patches;

Reported by: paul <goodoldpaul <at> autistici.org>

Date: Thu, 11 Jun 2020 15:08:01 UTC

Severity: normal

Tags: patch

Done: Leo Famulari <leo <at> famulari.name>

Bug is archived. No further changes may be made.

Full log


View this message in rfc822 format

From: Giacomo Leidi <goodoldpaul <at> autistici.org>
To: 41807 <at> debbugs.gnu.org
Cc: Giacomo Leidi <goodoldpaul <at> autistici.org>
Subject: [bug#41807] [PATCH 17/26] gnu: Add python-typing-inspect.
Date: Thu, 11 Jun 2020 17:13:48 +0200
* gnu/packages/python-xyz.scm (python-typing-inspect): New variable.
---
 gnu/packages/python-xyz.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 7c78a6e4be..d6edc33579 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -20353,3 +20353,32 @@ to the standard @code{typing} module that are supported by the
      "@{python-flake8-pyi} is a plugin for Flake8 that provides specializations
 for type hinting stub files, especially interesting for linting @code{typeshed}.")
     (license license:expat)))
+
+(define-public python-typing-inspect
+  (package
+    (name "python-typing-inspect")
+    (version "0.6.0")
+    (source
+     (origin
+       ;; There seems to be no source tarball on PyPI.
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/ilevkivskyi/typing_inspect.git")
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1f612wf0pfwknnrjvnsap08blh706zp0a1lc7gslqyh5vwg7rc5j"))))
+    (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
+     "Runtime inspection utilities for typing module")
+    (description
+     "The @code{typing_inspect} module defines experimental API for
+runtime inspection of types defined in the Python standard typing module.")
+    (license license:expat)))
-- 
2.26.2





This bug report was last modified 4 years and 158 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.