gnu: python2-six: Disable tests.

* gnu/packages/python-xyz.scm (python2-six)[native-inputs]: Clear.
[phases]: Delete check phase.
This commit is contained in:
Maxim Cournoyer 2022-05-13 16:34:56 -04:00
parent b89669f034
commit a55151703f
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -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