diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2016-12-31 16:42:05 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2016-12-31 16:51:55 +0100 |
commit | 234ade2d7b8f073c61edab5f596b617a1d3f7097 (patch) | |
tree | ecfc4d1d095a8b4417ed91e10b26e1b4951cd7ae | |
parent | ab0c342924407ec93c52ee13a85c6b72e870af19 (diff) |
gnu: python-ply: Update to 3.9.
* gnu/packages/python.scm (python-ply): Update to 3.9.
[source]: Use pypi-uri.
-rw-r--r-- | gnu/packages/python.scm | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index a29917b608..6bfeae5136 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -10314,17 +10314,14 @@ network support library.") (define-public python-ply (package (name "python-ply") - (version "3.8") + (version "3.9") (source (origin (method url-fetch) - (uri (string-append - "https://pypi.python.org/packages/" - "96/e0/430fcdb6b3ef1ae534d231397bee7e9304be14a47a267e82ebcb3323d0b5" - "/ply-" version ".tar.gz")) + (uri (pypi-uri "ply" version)) (sha256 (base32 - "1f70ipynmiy09k6px2j7v4w5cdrc21za3xs2k6f1bsvb0bzvvlg7")))) + "0gpl0yli3w03ipyqfrp3w5nf0iawhsq65anf5wwm2wf5p502jzhd")))) (build-system python-build-system) (home-page "http://www.dabeaz.com/ply/") (synopsis "Python Lex & Yacc") |