mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-01 07:16:39 +01:00
gnu: python2-fasteners: Propagate python2-futures.
* gnu/packages/python.scm (python-fasteners)[properties]: New field. (python2-fasteners)[propagated-inputs]: Add PYTHON2-FUTURES.
This commit is contained in:
parent
366cd7fcba
commit
45bc4b7ecb
1 changed files with 7 additions and 1 deletions
|
@ -14124,10 +14124,16 @@ (define-public python-fasteners
|
|||
@item Inter-process locks
|
||||
@item Generic helpers
|
||||
@end itemize\n")
|
||||
(properties `((python2-variant . ,(delay python2-fasteners))))
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public python2-fasteners
|
||||
(package-with-python2 python-fasteners))
|
||||
(let ((base (package-with-python2 (strip-python2-variant python-fasteners))))
|
||||
(package
|
||||
(inherit base)
|
||||
(propagated-inputs
|
||||
`(("python2-futures" ,python2-futures)
|
||||
,@(package-propagated-inputs base))))))
|
||||
|
||||
(define-public python-requests-file
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue