mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05:00
gnu: python2-conda: Fix build by building with enum34.
* gnu/packages/package-management.scm (python2-conda): Use 'python2-variant'. [native-inputs]: Add python2-enum34.
This commit is contained in:
parent
9ef5940ce4
commit
2c5cf84430
1 changed files with 6 additions and 1 deletions
|
@ -661,7 +661,12 @@ (define-public python-conda
|
|||
(license bsd-3)))
|
||||
|
||||
(define-public python2-conda
|
||||
(package-with-python2 python-conda))
|
||||
(let ((base (package-with-python2
|
||||
(strip-python2-variant python-conda))))
|
||||
(package (inherit base)
|
||||
(native-inputs
|
||||
`(("python2-enum34" ,python2-enum34)
|
||||
,@(package-native-inputs base))))))
|
||||
|
||||
(define-public conda
|
||||
(package (inherit python-conda)
|
||||
|
|
Loading…
Reference in a new issue