me
/
guix
Archived
1
0
Fork 0

gnu: python-parso: Update to 0.8.3.

* gnu/packages/yyy.scm (python-parso): Update to 0.8.3.
[arguments]: Satisfy guix lint.

Signed-off-by: Christopher Baines <mail@cbaines.net>
master
jgart 2022-06-21 23:29:04 -05:00 committed by Christopher Baines
parent 69bf6319f6
commit 8e2ff622ed
No known key found for this signature in database
GPG Key ID: 5E28A33B0B84F577
1 changed files with 8 additions and 5 deletions

View File

@ -21413,20 +21413,23 @@ time-based (TOTP) passwords.")
(define-public python-parso (define-public python-parso
(package (package
(name "python-parso") (name "python-parso")
(version "0.8.2") (version "0.8.3")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (pypi-uri "parso" version)) (uri (pypi-uri "parso" version))
(sha256 (sha256
(base32 "161k8771m7w60qakyvrwf9q62lvakmix7mpfylpy7713qs939f0j")))) (base32 "185gkxq92kqiw2h5zp1cmyn04055x0lix4hmi5c077xm1clvw1wc"))))
(native-inputs (native-inputs
(list python-pytest)) (list python-pytest))
(build-system python-build-system) (build-system python-build-system)
(arguments (arguments
`(#:phases (modify-phases %standard-phases `(#:phases
(replace 'check (modify-phases %standard-phases
(lambda _ (invoke "pytest" "-vv")))))) (replace 'check
(lambda* (#:key tests? #:allow-other-keys)
(when tests?
(invoke "pytest" "-vv")))))))
(home-page "https://github.com/davidhalter/parso") (home-page "https://github.com/davidhalter/parso")
(synopsis "Python Parser") (synopsis "Python Parser")
(description "Parso is a Python parser that supports error recovery and (description "Parso is a Python parser that supports error recovery and