diff --git a/gnu/packages/shells.scm b/gnu/packages/shells.scm index c165f99..e8ad701 100644 --- a/gnu/packages/shells.scm +++ b/gnu/packages/shells.scm @@ -281,8 +281,23 @@ ksh, and tcsh.") (uri (pypi-uri "xonsh" version)) (sha256 (base32 - "0byxd9kjl99q2pyvjh9jy18l0di1i35wr0qqgnw4i6jh6ig3zcki")))) + "0byxd9kjl99q2pyvjh9jy18l0di1i35wr0qqgnw4i6jh6ig3zcki")) + (modules '((guix build utils))) + (snippet + `(begin + ;; Delete bundled ply. + (delete-file-recursively "xonsh/ply") + (substitute* '("setup.py") + (("'xonsh\\.ply',") "")) + #t)))) (build-system python-build-system) + (native-inputs + `(("python-numpydoc" ,python-numpydoc))) + (inputs + ;; TODO jupyter distro cloud Sphinx-Theme + `(("python-ply" ,python-ply) + ("python-sphinx" ,python-sphinx) + ("python-prompt-toolkit" ,python-prompt-toolkit))) (home-page "http://xon.sh/") (synopsis "Python-ish shell") (description