py-ply: get sources from pypi (#27526)

* py-ply: use pypi

* Add py-setuptools dependency
This commit is contained in:
Manuela Kuhn 2021-11-19 00:52:51 +01:00 committed by GitHub
parent e3cd91af53
commit 0b6ce17dc4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,9 +7,12 @@
class PyPly(PythonPackage):
"""PLY is nothing more than a straightforward lex/yacc implementation."""
"""Python Lex & Yacc."""
homepage = "http://www.dabeaz.com/ply"
url = "https://www.dabeaz.com/ply/ply-3.11.tar.gz"
pypi = "ply/ply-3.11.tar.gz"
version('3.11', sha256='00c7c1aaa88358b9c765b6d3000c6eec0ba42abca5351b095321aef446081da3')
version('3.8', sha256='e7d1bdff026beb159c9942f7a17e102c375638d9478a7ecd4cc0c76afd8de0b8')
depends_on('py-setuptools', type='build')