py-mypy: add v1.1.1 (#35926)

This commit is contained in:
Adam J. Stewart 2023-03-08 00:16:01 -07:00 committed by GitHub
parent e447c365ee
commit ec73157a34
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View File

@ -13,6 +13,7 @@ class PyMypyExtensions(PythonPackage):
homepage = "https://github.com/python/mypy_extensions"
pypi = "mypy-extensions/mypy_extensions-0.4.3.tar.gz"
version("1.0.0", sha256="75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782")
version("0.4.3", sha256="2d82818f5bb3e369420cb3c4060a7970edba416647068eb4c5343488a6c604a8")
depends_on("py-setuptools", type="build")

View File

@ -14,6 +14,8 @@ class PyMypy(PythonPackage):
maintainers("adamjstewart")
version("1.1.1", sha256="ae9ceae0f5b9059f33dbc62dea087e942c0ccab4b7a003719cb70f9b8abfa32f")
version("1.0.1", sha256="28cea5a6392bb43d266782983b5a4216c25544cd7d80be681a155ddcdafd152d")
version("1.0.0", sha256="f34495079c8d9da05b183f9f7daec2878280c2ad7cc81da686ef0b484cea2ecf")
version("0.991", sha256="3c0165ba8f354a6d9881809ef29f1a9318a236a6d81c690094c5df32107bde06")
version("0.990", sha256="72382cb609142dba3f04140d016c94b4092bc7b4d98ca718740dc989e5271b8d")
@ -43,7 +45,8 @@ class PyMypy(PythonPackage):
depends_on("py-wheel@0.30:", when="@0.790:", type="build")
depends_on("py-typing-extensions@3.10:", when="@0.930:", type=("build", "run"))
depends_on("py-typing-extensions@3.7.4:", when="@0.700:", type=("build", "run"))
depends_on("py-mypy-extensions@0.4.3:", when="@0.930:", type=("build", "run"))
depends_on("py-mypy-extensions@1:", when="@1.1:", type=("build", "run"))
depends_on("py-mypy-extensions@0.4.3:", when="@0.930:1.0", type=("build", "run"))
depends_on("py-mypy-extensions@0.4.3:0.4", when="@0.700:0.929", type=("build", "run"))
depends_on("py-mypy-extensions@0.4.0:0.4", when="@:0.699", type=("build", "run"))
depends_on("py-typed-ast@1.4.0:1", when="@0.920: ^python@:3.7", type=("build", "run"))