mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-15 03:15:09 -05:00
gnu: python2-flask: Pick up python-flask's native-inputs.
* gnu/packages/python.scm (python2-flask)[native-inputs]: Pick up python-flask's native-inputs. Signed-off-by: Marius Bakke <mbakke@fastmail.com>
This commit is contained in:
parent
988e1dca4b
commit
7574cecf0f
1 changed files with 5 additions and 3 deletions
|
@ -9581,9 +9581,11 @@ (define-public python-flask
|
|||
(properties `((python2-variant . ,(delay python2-flask))))))
|
||||
|
||||
(define-public python2-flask
|
||||
(package (inherit (package-with-python2
|
||||
(strip-python2-variant python-flask)))
|
||||
(native-inputs `(("python2-setuptools" ,python2-setuptools)))))
|
||||
(let ((base (package-with-python2 (strip-python2-variant python-flask))))
|
||||
(package
|
||||
(inherit base)
|
||||
(native-inputs `(("python2-setuptools" ,python2-setuptools)
|
||||
,@(package-native-inputs base))))))
|
||||
|
||||
(define-public python-cookies
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue