mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-15 23:48:07 -05:00
gnu: python2-six: Disable tests.
* gnu/packages/python-xyz.scm (python2-six)[native-inputs]: Clear. [phases]: Delete check phase.
This commit is contained in:
parent
b89669f034
commit
a55151703f
1 changed files with 10 additions and 1 deletions
|
@ -2573,7 +2573,16 @@ (define-public python-six
|
|||
`(("python-pytest" ,python-pytest-bootstrap)))))
|
||||
|
||||
(define-public python2-six
|
||||
(package-with-python2 python-six))
|
||||
(let ((base (package-with-python2 python-six)))
|
||||
(package
|
||||
(inherit base)
|
||||
;; Reduce Python 2 closure by disabling tests and removing the native
|
||||
;; inputs.
|
||||
(arguments (substitute-keyword-arguments (package-arguments base)
|
||||
((#:phases phases)
|
||||
`(modify-phases ,phases
|
||||
(delete 'check)))))
|
||||
(native-inputs '()))))
|
||||
|
||||
(define-public python-schedule
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue