mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-25 20:19:18 -05:00
gnu: xonsh: Update to 0.5.0.
* gnu/packages/shells.scm (xonsh): Update to 0.5.0. Signed-off-by: Kei Kebreau <kei@openmailbox.org>
This commit is contained in:
parent
059b3aa9c3
commit
572ee05c31
1 changed files with 4 additions and 3 deletions
|
@ -4,6 +4,7 @@
|
||||||
;;; Copyright © 2014 Kevin Lemonnier <lemonnierk@ulrar.net>
|
;;; Copyright © 2014 Kevin Lemonnier <lemonnierk@ulrar.net>
|
||||||
;;; Copyright © 2015 Jeff Mickey <j@codemac.net>
|
;;; Copyright © 2015 Jeff Mickey <j@codemac.net>
|
||||||
;;; Copyright © 2016 Tobias Geerinckx-Rice <me@tobias.gr>
|
;;; Copyright © 2016 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
|
;;; Copyright © 2016 Stefan Reichör <stefan@xsteve.at>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -298,21 +299,21 @@ (define-public zsh
|
||||||
(define-public xonsh
|
(define-public xonsh
|
||||||
(package
|
(package
|
||||||
(name "xonsh")
|
(name "xonsh")
|
||||||
(version "0.4.7")
|
(version "0.5.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "xonsh" version))
|
(uri (pypi-uri "xonsh" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"04b0z41mxiwsp5rl21fzrixcdmx2kndjlh4gn3582qfga9hihf20"))
|
"1iml0mrjl2j3dsan5app6am77bd59s855p6yy6505ljdh552mv01"))
|
||||||
(modules '((guix build utils)))
|
(modules '((guix build utils)))
|
||||||
(snippet
|
(snippet
|
||||||
`(begin
|
`(begin
|
||||||
;; Delete bundled ply.
|
;; Delete bundled ply.
|
||||||
(delete-file-recursively "xonsh/ply")
|
(delete-file-recursively "xonsh/ply")
|
||||||
(substitute* '("setup.py")
|
(substitute* '("setup.py")
|
||||||
(("'xonsh\\.ply',") ""))
|
(("'xonsh\\.ply\\.ply',") ""))
|
||||||
#t))))
|
#t))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
|
|
Loading…
Reference in a new issue