diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2020-03-12 11:00:41 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2020-03-12 15:34:28 +0200 |
commit | b0aa58d8f1d63db2d4444db378e6dd4ee4b9313b (patch) | |
tree | b9b86c02834f562c91197a6021912ac2a9a15990 /gnu | |
parent | e8588a7847a4669a4e3a4ffca8865d8f1b9a227e (diff) | |
download | patches-b0aa58d8f1d63db2d4444db378e6dd4ee4b9313b.tar patches-b0aa58d8f1d63db2d4444db378e6dd4ee4b9313b.tar.gz |
gnu: python2-jupyter-console: Build with python2.
* gnu/packages/python-xyz.scm (python2-jupyter-console)[arguments]: Add
python keyword, set to python-2.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/python-xyz.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 2466368512..61b4a8aa98 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -8187,8 +8187,9 @@ Jupyter kernels such as IJulia and IRKernel.") (base32 "1kam1qzgwr7srhm5r6aj90di5sws4bq0jmiw15452ddamb9yspal")))) (build-system python-build-system) - ;; Tests only run in an TTY. - (arguments `(#:tests? #f)) + (arguments + `(#:python ,python-2 + #:tests? #f)) ; Tests only run in a TTY. (propagated-inputs `(("python2-ipykernel" ,python2-ipykernel) ("python2-jupyter-client" ,python2-jupyter-client) |