mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-16 03:45:24 -05:00
gnu: ptpython: Update to 3.0.5.
The previous version had been broken ever since python-prompt-toolkit was updated to 3.x. * gnu/packages/python-xyz.scm (ptpython): Update to 3.0.5. [propagated-inputs]: Add python-appdirs. Remove python-docopt.
This commit is contained in:
parent
5b8bcc23b1
commit
03b27b396b
1 changed files with 3 additions and 3 deletions
|
@ -13177,18 +13177,18 @@ (define-public python2-jedi
|
||||||
(define-public ptpython
|
(define-public ptpython
|
||||||
(package
|
(package
|
||||||
(name "ptpython")
|
(name "ptpython")
|
||||||
(version "0.34")
|
(version "3.0.5")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "ptpython" version))
|
(uri (pypi-uri "ptpython" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1mmbiyzf0n8hm7z2a562x7w5cbl6jc0zsk6vp40q1z4cyblv1k13"))))
|
"0c2ry5gwi2v99slna62j8r2bwq0hpzmvgdryqg9m6x57vbjfg52h"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:tests? #f)) ; FIXME: No tests in pypi tarball.
|
'(#:tests? #f)) ; FIXME: No tests in pypi tarball.
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("python-docopt" ,python-docopt)
|
`(("python-appdirs" ,python-appdirs)
|
||||||
("python-jedi" ,python-jedi)
|
("python-jedi" ,python-jedi)
|
||||||
("python-prompt-toolkit" ,python-prompt-toolkit)
|
("python-prompt-toolkit" ,python-prompt-toolkit)
|
||||||
("python-pygments" ,python-pygments)))
|
("python-pygments" ,python-pygments)))
|
||||||
|
|
Loading…
Reference in a new issue