gnu: Remove python2-futures.

* gnu/packages/python-xyz.scm (python2-futures): Delete variable.
This commit is contained in:
Maxim Cournoyer 2022-04-29 23:11:08 -04:00
parent c3a8ee49bc
commit 08063afd31
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -14687,35 +14687,6 @@ (define-public python2-subprocess32
otherwise matches 3.2s API.")
(license license:psfl)))
(define-public python2-futures
(package
(name "python2-futures")
(version "3.2.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "futures" version))
(sha256
(base32
"0rdjmmsab550kxsssdq49jcniz77zlkpw4pvi9hvib3lsskjmh4y"))))
(build-system python-build-system)
(arguments
`(#:python ,python-2
#:phases
(modify-phases %standard-phases
(replace 'check
(lambda _
(invoke "python" "test_futures.py")
#t)))))
(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 license:bsd-3)))
(define-public python-promise
(package
(name "python-promise")