Add checksum for py-prometheus-client 0.14.1 (#34259)

This commit is contained in:
iarspider 2022-12-12 13:32:02 +01:00 committed by GitHub
parent 88f2f59d92
commit 4a0e34eda8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,6 +11,7 @@ class PyPrometheusClient(PythonPackage):
pypi = "prometheus_client/prometheus_client-0.7.1.tar.gz"
version("0.14.1", sha256="5459c427624961076277fdc6dc50540e2bacb98eebde99886e59ec55ed92093a")
version("0.12.0", sha256="1b12ba48cee33b9b0b9de64a1047cbd3c5f2d0ab6ebcead7ddda613a750ec3c5")
version("0.7.1", sha256="71cd24a2b3eb335cb800c7159f423df1bd4dcd5171b234be15e3f31ec9f622da")
version("0.7.0", sha256="ee0c90350595e4a9f36591f291e6f9933246ea67d7cd7d1d6139a9781b14eaae")
@ -21,9 +22,10 @@ class PyPrometheusClient(PythonPackage):
depends_on("py-setuptools", type="build")
# Notice: prometheus_client/twisted/_exposition.py imports 'twisted.web.wsgi'
# which was not ported to Python 3 until twisted 16.0.0
depends_on("py-twisted", type=("build", "run"), when="+twisted")
depends_on("py-twisted@16:", type=("build", "run"), when="@0.12.0: +twisted ^python@3:")
depends_on("python@2.7:2,3.4:", type=("build", "run"), when="@0.12.0:")
depends_on("py-twisted", when="+twisted", type=("build", "run"))
depends_on("py-twisted@16:", when="@0.12.0: +twisted ^python@3:", type=("build", "run"))
depends_on("python@2.7:2,3.4:", when="@0.12.0", type=("build", "run"))
depends_on("python@3.6:", when="@0.14.1:", type=("build", "run"))
@property
def import_modules(self):