mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add python-pyre-extensions.
* gnu/packages/python-xyz.scm (python-pyre-extensions): New variable. Signed-off-by: Leo Famulari <leo@famulari.name>
This commit is contained in:
parent
0386f3a69e
commit
f5de08ffab
1 changed files with 24 additions and 0 deletions
|
@ -23262,3 +23262,27 @@ (define-public python-aiofiles
|
|||
(description "@code{python-aiofiles} is a library for handling local
|
||||
disk files in asyncio applications.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public python-pyre-extensions
|
||||
(package
|
||||
(name "python-pyre-extensions")
|
||||
(version "0.0.18")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "pyre-extensions" version))
|
||||
(sha256
|
||||
(base32
|
||||
"0c5cbbqrfyjwakdh3kbwxis6mbrbwky1z1fqslgszgpcj4g43q30"))))
|
||||
(build-system python-build-system)
|
||||
(propagated-inputs
|
||||
`(("python-typing-extensions"
|
||||
,python-typing-extensions)
|
||||
("python-typing-inspect" ,python-typing-inspect)))
|
||||
(home-page "https://pyre-check.org")
|
||||
(synopsis
|
||||
"Type system extensions for use with @code{python-pyre}")
|
||||
(description
|
||||
"@code{python-pyre-extensions} defines extensions to the standard
|
||||
@code{typing} module that are supported by the Pyre typechecker.")
|
||||
(license license:expat)))
|
||||
|
|
Loading…
Reference in a new issue