mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 22:38:07 -05:00
gnu: Add python-futures.
* gnu/packages/python.scm (python-futures, python2-futures): New variables.
This commit is contained in:
parent
c9e330d001
commit
7a5b944eb5
1 changed files with 26 additions and 0 deletions
|
@ -7084,3 +7084,29 @@ (define-public python-hy
|
|||
|
||||
(define-public python2-hy
|
||||
(package-with-python2 python-hy))
|
||||
|
||||
(define-public python-futures
|
||||
(package
|
||||
(name "python-futures")
|
||||
(version "3.0.3")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "futures" version))
|
||||
(sha256
|
||||
(base32
|
||||
"1vcb34dqhzkhbq1957vdjszhhm5y3j9ba88dgwhqx2zynhmk9qig"))))
|
||||
(build-system python-build-system)
|
||||
(native-inputs
|
||||
`(("python-setuptools" ,python-setuptools)))
|
||||
(home-page "https://github.com/agronholm/pythonfutures")
|
||||
(synopsis
|
||||
"Backport of the concurrent.futures package from Python 3.2")
|
||||
(description
|
||||
"The concurrent.futures module provides a high-level interface for
|
||||
asynchronously executing callables. This package backports the
|
||||
concurrent.futures package from Python 3.2")
|
||||
(license bsd-3)))
|
||||
|
||||
(define-public python2-futures
|
||||
(package-with-python2 python-futures))
|
||||
|
|
Loading…
Reference in a new issue