summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--var/spack/repos/builtin/packages/py-grpcio-tools/package.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/py-grpcio-tools/package.py b/var/spack/repos/builtin/packages/py-grpcio-tools/package.py
index 78c4339279..21247b745a 100644
--- a/var/spack/repos/builtin/packages/py-grpcio-tools/package.py
+++ b/var/spack/repos/builtin/packages/py-grpcio-tools/package.py
@@ -12,14 +12,17 @@ class PyGrpcioTools(PythonPackage):
homepage = "https://grpc.io/"
pypi = "grpcio-tools/grpcio-tools-1.42.0.tar.gz"
+ version("1.48.1", sha256="1178f2ea531f80cc2027ec64728df6ffc8e98cf1df61652a496eafd612127183")
version("1.42.0", sha256="d0a0daa82eb2c2fb8e12b82a458d1b7c5516fe1135551da92b1a02e2cba93422")
version("1.39.0", sha256="39dfe7415bc0d3860fdb8dd90607594b046b88b57dbe64284efa4820f951c805")
depends_on("python@3.6:", type=("build", "run"))
depends_on("py-setuptools", type="build")
+ depends_on("py-protobuf@3.12.0:3", when="@1.48.1:", type=("build", "run"))
depends_on("py-protobuf@3.5.0.post1:3", type=("build", "run"))
- depends_on("py-grpcio@1.42.0:", type=("build", "run"), when="@1.42.0:")
- depends_on("py-grpcio@1.39.0:", type=("build", "run"), when="@1.39.0:1.41")
+ depends_on("py-grpcio@1.48.1:", when="@1.48.1:", type=("build", "run"))
+ depends_on("py-grpcio@1.42.0:", when="@1.42.0:", type=("build", "run"))
+ depends_on("py-grpcio@1.39.0:", when="@1.39.0:1.41", type=("build", "run"))
depends_on("py-cython@0.23:", type="build")
depends_on("openssl")
depends_on("zlib")