py-eventlet: fix url (#47418)

* py-eventlet: fix url
* py-eventlet: fix checksum
This commit is contained in:
Wouter Deconinck 2024-11-04 23:08:17 -06:00 committed by GitHub
parent 5b59a53545
commit 703cd6a313
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -10,11 +10,11 @@ class PyEventlet(PythonPackage):
"""Concurrent networking library for Python"""
homepage = "https://github.com/eventlet/eventlet"
url = "https://github.com/eventlet/eventlet/releases/download/v0.22.0/eventlet-0.22.0.tar.gz"
url = "https://github.com/eventlet/eventlet/archive/refs/tags/v0.22.0.tar.gz"
license("MIT")
version("0.22.0", sha256="6d22464f448fdf144a9d566c157299d686bbe324554dd7729df9ccd05ca66439")
version("0.22.0", sha256="c4cc92268b82eb94d5e0de0592159157d68122d394f480e3f9a9d6ddb695655e")
depends_on("py-setuptools", type="build")
depends_on("py-greenlet@0.3:")