mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05:00
gnu: xonsh: Remove bundled PLY.
* gnu/packages/shells.scm (xonsh)[source]: Add snippet to remove bundled python-ply. [inputs]: Add python-ply. Signed-off-by: Leo Famulari <leo@famulari.name>
This commit is contained in:
parent
86d8f6d3ef
commit
cfb7e269e9
1 changed files with 11 additions and 1 deletions
|
@ -281,8 +281,18 @@ (define-public xonsh
|
|||
(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)
|
||||
(inputs
|
||||
`(("python-ply" ,python-ply)))
|
||||
(home-page "http://xon.sh/")
|
||||
(synopsis "Python-ish shell")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue