gnu: Remove python2-notebook.

Some of its requirements no longer support Python 2 which has left this
package broken for a while.

* gnu/packages/python-xyz.scm (python2-notebook): Remove variable.
(python-notebook)[properties]: Remove.
This commit is contained in:
Marius Bakke 2021-05-22 19:46:02 +02:00
parent 35bd94a492
commit d51b8ac947
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -11200,29 +11200,8 @@ (define-public python-notebook
(description
"The Jupyter HTML notebook is a web-based notebook environment for
interactive computing.")
(properties `((python2-variant . ,(delay python2-notebook))))
(license license:bsd-3)))
(define-public python2-notebook
(let ((base (package-with-python2
(strip-python2-variant python-notebook))))
(package/inherit base
(native-inputs
`(("python2-mock" ,python2-mock)
,@(package-native-inputs base)))
(arguments
(substitute-keyword-arguments (package-arguments base)
((#:phases phases)
`(modify-phases ,phases
(add-before 'check 'disable-test-case
;; The test requires network access to localhost. Curiously it
;; fails with Python 2 only. Simply make the test-case return
;; immediately.
(lambda _
(substitute*
"notebook/services/nbconvert/tests/test_nbconvert_api.py"
(("formats = self.nbconvert_api") "return #")))))))))))
(define-public python-widgetsnbextension
(package
(name "python-widgetsnbextension")